diff options
Diffstat (limited to 'Source/Checks/cm_cxx_attribute_fallthrough.cxx')
-rw-r--r-- | Source/Checks/cm_cxx_attribute_fallthrough.cxx | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/Source/Checks/cm_cxx_attribute_fallthrough.cxx b/Source/Checks/cm_cxx_attribute_fallthrough.cxx deleted file mode 100644 index df43625..0000000 --- a/Source/Checks/cm_cxx_attribute_fallthrough.cxx +++ /dev/null @@ -1,11 +0,0 @@ -int main(int argc, char* argv[]) -{ - int i = 3; - switch (argc) { - case 1: - i = 0; - __attribute__((fallthrough)); - default: - return i; - } -} |