在下面的代码中,我使用[[fallthrough]]
C++1z 中的标准属性来记录需要失败:
#include <iostream>
int main() {
switch (0) {
case 0:
std::cout << "a\n";
[[fallthrough]]
case 1:
std::cout << "b\n";
break;
}
}
使用 GCC 7.1,代码编译没有错误。但是,编译器仍然警告我一个失败:
warning: this statement may fall through [-Wimplicit-fallthrough=]
std::cout << "a\n";
~~~~~~~~~~^~~~~~~~
为什么?