From 274d65818d5bfe2828894ac2e308bd772f3d2925 Mon Sep 17 00:00:00 2001 From: hsutter Date: Thu, 4 Apr 2019 11:16:34 -0700 Subject: [PATCH] Closes #1392 --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index db63679..e4085fb 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -12693,7 +12693,7 @@ In rare cases if fallthrough is deemed appropriate, be explicit and use the `[[f break; case Warning: write_event_log(); - [[fallthrough]]; // C++17 (and legal but ignored since C++11) + [[fallthrough]]; case Error: display_error_window(); break;