mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-13 00:03:09 -04:00
Add semicolon to clang::fallthrough define
This commit is contained in:
parent
ebe382870f
commit
ea70bb4265
2
external/libdxfrw/intern/dwgutil.cpp
vendored
2
external/libdxfrw/intern/dwgutil.cpp
vendored
@ -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
|
||||
|
2
external/libdxfrw/libdxfrw.cpp
vendored
2
external/libdxfrw/libdxfrw.cpp
vendored
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user