diff options
author | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2020-08-30 02:14:01 +0200 |
---|---|---|
committer | Ignacio Etcheverry <ignalfonsore@gmail.com> | 2020-08-30 02:17:04 +0200 |
commit | 8c7553a0760691d7bb59d3ce96162646bdc69a40 (patch) | |
tree | 304faa5e35593c9c0b7f5d84c45e468fe107d63c /modules/mono/utils | |
parent | f10c3810bb0abfa18b1a579ee927f460bf191b6d (diff) |
Fix clang-tidy warnings due to semicolon after mono module macros
This also enforces them to end with a semicolon.
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 { |