From 68fea200202762454b0bda0c4001a24d51707bec Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 14 Aug 2020 14:42:07 -0400 Subject: [PATCH] common/assert: Resolve several -Wextra-semi warnings Resolves 200+ warnings. --- src/common/assert.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/assert.h b/src/common/assert.h index d1a3a6f0..2181ec00 100644 --- a/src/common/assert.h +++ b/src/common/assert.h @@ -57,7 +57,7 @@ template ::Dynarmic::Common::detail::TerminateHelper(#expr "\nMessage: " __VA_ARGS__); \ } \ }() - #define ASSERT_FALSE(...) ::Dynarmic::Common::detail::TerminateHelper("false\nMessage: " __VA_ARGS__); + #define ASSERT_FALSE(...) ::Dynarmic::Common::detail::TerminateHelper("false\nMessage: " __VA_ARGS__) #endif #if defined(NDEBUG) || defined(DYNARMIC_IGNORE_ASSERTS)