diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-08-30 12:04:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-30 12:04:16 +0200 |
commit | db5ea78b7bf85ddd9109fa4ac03a7178d446cb58 (patch) | |
tree | 0ef5b59673f4badea6e8291cfc040422397e04af /modules/mono/utils | |
parent | 30029e1d7fcb119885f42e4740505e9d7ba61209 (diff) | |
parent | 8c7553a0760691d7bb59d3ce96162646bdc69a40 (diff) |
Merge pull request #41613 from neikeq/possibly
Fix clang-tidy warnings due to semicolon after mono module macros
Diffstat (limited to 'modules/mono/utils')
-rw-r--r-- | modules/mono/utils/macros.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/utils/macros.h b/modules/mono/utils/macros.h index dc542477f5..c76619cca4 100644 --- a/modules/mono/utils/macros.h +++ b/modules/mono/utils/macros.h @@ -46,7 +46,7 @@ #define GD_UNREACHABLE() \ CRASH_NOW(); \ do { \ - } while (true); + } while (true) #endif namespace gdmono { |