Skip to content

Commit ea70bb4

Browse files
committedAug 6, 2018
Add semicolon to clang::fallthrough define
1 parent ebe3828 commit ea70bb4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎external/libdxfrw/intern/dwgutil.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#if __cplusplus >= 201500
2020
#define FALLTHROUGH [[fallthrough]];
2121
#elif defined(__clang__)
22-
#define FALLTHROUGH [[clang::fallthrough]]
22+
#define FALLTHROUGH [[clang::fallthrough]];
2323
#elif defined(__GNUC__) && __GNUC__ >= 7
2424
#define FALLTHROUGH [[gnu::fallthrough]];
2525
#else

‎external/libdxfrw/libdxfrw.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#if __cplusplus >= 201500
2828
#define FALLTHROUGH [[fallthrough]];
2929
#elif defined(__clang__)
30-
#define FALLTHROUGH [[clang::fallthrough]]
30+
#define FALLTHROUGH [[clang::fallthrough]];
3131
#elif defined(__GNUC__) && __GNUC__ >= 7
3232
#define FALLTHROUGH [[gnu::fallthrough]];
3333
#else

‎src/core/qgis.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -563,7 +563,7 @@ typedef unsigned long long qgssize;
563563
#if __cplusplus >= 201500
564564
#define FALLTHROUGH [[fallthrough]];
565565
#elif defined(__clang__)
566-
#define FALLTHROUGH [[clang::fallthrough]]
566+
#define FALLTHROUGH [[clang::fallthrough]];
567567
#elif defined(__GNUC__) && __GNUC__ >= 7
568568
#define FALLTHROUGH [[gnu::fallthrough]];
569569
#else

0 commit comments

Comments
 (0)
Please sign in to comment.