From eaca25fd5115ab00a29b7d47dfc6e16cbfd5e552 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Tue, 3 Jul 2018 10:47:48 +0900 Subject: Roll various switch case fallthrough markers into a macro --- lib/jobs/syncjob.cpp | 2 +- lib/util.h | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/lib/jobs/syncjob.cpp b/lib/jobs/syncjob.cpp index f9f5666e..cbdc37b4 100644 --- a/lib/jobs/syncjob.cpp +++ b/lib/jobs/syncjob.cpp @@ -129,7 +129,7 @@ SyncRoomData::SyncRoomData(const QString& roomId_, JoinState joinState_, case JoinState::Join: ephemeral = load(room_, "ephemeral"); accountData = load(room_, "account_data"); - // [[fallthrough]] + FALLTHROUGH; case JoinState::Leave: { timeline = load(room_, "timeline"); diff --git a/lib/util.h b/lib/util.h index 8c925d71..d6e1cef6 100644 --- a/lib/util.h +++ b/lib/util.h @@ -27,6 +27,14 @@ #include #include +#if __cplusplus >= 201703L +#define FALLTHROUGH [[fallthrough]] +#elif __has_cpp_attribute(clang::fallthrough) +#define FALLTHROUGH [[clang::fallthrough]] +#else +#define FALLTHROUGH // -fallthrough +#endif + namespace QMatrixClient { // The below enables pretty-printing of enums in logs -- cgit v1.2.3