Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Add semicolon to clang::fallthrough define
- Loading branch information
|
@@ -19,7 +19,7 @@ |
|
|
#if __cplusplus >= 201500 |
|
|
#define FALLTHROUGH [[fallthrough]]; |
|
|
#elif defined(__clang__) |
|
|
#define FALLTHROUGH [[clang::fallthrough]] |
|
|
#define FALLTHROUGH [[clang::fallthrough]]; |
|
|
#elif defined(__GNUC__) && __GNUC__ >= 7 |
|
|
#define FALLTHROUGH [[gnu::fallthrough]]; |
|
|
#else |
|
|
|
@@ -27,7 +27,7 @@ |
|
|
#if __cplusplus >= 201500 |
|
|
#define FALLTHROUGH [[fallthrough]]; |
|
|
#elif defined(__clang__) |
|
|
#define FALLTHROUGH [[clang::fallthrough]] |
|
|
#define FALLTHROUGH [[clang::fallthrough]]; |
|
|
#elif defined(__GNUC__) && __GNUC__ >= 7 |
|
|
#define FALLTHROUGH [[gnu::fallthrough]]; |
|
|
#else |
|
|
|
@@ -563,7 +563,7 @@ typedef unsigned long long qgssize; |
|
|
#if __cplusplus >= 201500 |
|
|
#define FALLTHROUGH [[fallthrough]]; |
|
|
#elif defined(__clang__) |
|
|
#define FALLTHROUGH [[clang::fallthrough]] |
|
|
#define FALLTHROUGH [[clang::fallthrough]]; |
|
|
#elif defined(__GNUC__) && __GNUC__ >= 7 |
|
|
#define FALLTHROUGH [[gnu::fallthrough]]; |
|
|
#else |
|
|