summaryrefslogtreecommitdiffstats
path: root/src/util.h
diff options
context:
space:
mode:
authorNico Weber <nicolasweber@gmx.de>2018-10-24 15:34:43 (GMT)
committerGitHub <noreply@github.com>2018-10-24 15:34:43 (GMT)
commitfccab7408a53b936fe1a6a527746a5119be71c66 (patch)
treec58f35a8d50e7516211f4dc82d40e37720cfa5b8 /src/util.h
parentd2045dedc39885e702176b2b5e05bc77024ae3aa (diff)
parent08ef815c7b55f28417b1a965eeab3640558d5f5a (diff)
downloadNinja-fccab7408a53b936fe1a6a527746a5119be71c66.zip
Ninja-fccab7408a53b936fe1a6a527746a5119be71c66.tar.gz
Ninja-fccab7408a53b936fe1a6a527746a5119be71c66.tar.bz2
Merge pull request #1417 from stefanb2/topic-silence-gcc-fallthrough-warnings
Silence GCC -Wimplicit-fallthrough warnings
Diffstat (limited to 'src/util.h')
-rw-r--r--src/util.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/util.h b/src/util.h
index 4ee41a5..1b4227c 100644
--- a/src/util.h
+++ b/src/util.h
@@ -34,6 +34,20 @@ using namespace std;
/// Log a fatal message and exit.
NORETURN void Fatal(const char* msg, ...);
+// Have a generic fall-through for different versions of C/C++.
+#if defined(__cplusplus) && __cplusplus >= 201703L
+#define NINJA_FALLTHROUGH [[fallthrough]]
+#elif defined(__cplusplus) && __cplusplus >= 201103L && defined(__clang__)
+#define NINJA_FALLTHROUGH [[clang::fallthrough]]
+#elif defined(__cplusplus) && __cplusplus >= 201103L && defined(__GNUC__) && \
+ __GNUC__ >= 7
+#define NINJA_FALLTHROUGH [[gnu::fallthrough]]
+#elif defined(__GNUC__) && __GNUC__ >= 7 // gcc 7
+#define NINJA_FALLTHROUGH __attribute__ ((fallthrough))
+#else // C++11 on gcc 6, and all other cases
+#define NINJA_FALLTHROUGH
+#endif
+
/// Log a warning message.
void Warning(const char* msg, ...);