W poniższym fragmencie kodu używam standardowego [[fallthrough]]
atrybutu z C ++ 1z, aby udokumentować, że pożądane jest przejście:
#include <iostream>
int main() {
switch (0) {
case 0:
std::cout << "a\n";
[[fallthrough]]
case 1:
std::cout << "b\n";
break;
}
}
W GCC 7.1 kod kompiluje się bez błędu. Jednak kompilator nadal ostrzega mnie przed awarią:
warning: this statement may fall through [-Wimplicit-fallthrough=]
std::cout << "a\n";
~~~~~~~~~~^~~~~~~~
Czemu?