Why unreachable code isn't an error in C++?

筅森魡賤 提交于 2019-12-04 14:48:45
bytecode77

Unreachable code is not a compile error in C++, but usually gives a warning, depending on your compiler and flags. If the compiler stopped when unreachable code is detected, then you would have less options for debugging code, because you would also have to manually remove code that is unnecessary.

A warning instead of an error makes sense. It's good that it's mentioned as one could have unintentionally left old code behind, but there is no reason not to compile anyway.

Unreachable code is a warning because there is no need for it to be an error, further, it can't always be easily avoided.

  • Code expanded from macros or that check constants may result in unreachable code.
  • Code may reachable or not depending on the pre-processor defines
    (common cross platform development for eg).
  • Generated code may result in unreachable code that isn't practical to detect in the generation phase.

Further, if you want this to be an error, GCC and CLANG support -Wunreachable-code, so you can use -Werror=unreachable-code

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!