The following snippet generates compilation errors on adding -pedantic and -Werror on compilers that are a bit old.
#include <cstdint>
#include <iostream>
int add(int a, int b){
return a + b;
}; // <-- stray semicolon
int main (){
return 0;
}
However this does not happen newer compiler versions. Please find a matrix of GCC (10.x and 11.x) and Clang (5.x, 6.x) demonstrating the difference at https://godbolt.org/z/KWeb8WTxz.
I have two parts to my question:
- Why is this not triggered in recent compilers?
- Is it possible to enable the old behaviour in recent versions of Clang or GCC?
Starting in C++11, extra semicolons
;(aka empty-declarations) at the global level are valid. I believe this is occasionally useful for writing macros.As such, GCC 11 removed
-pedanticdiagnostics for an extra;when-std=c++11or later is used. See:You can restore the old behavior by using a C++ standard older than C++11. Both GCC 11 and clang 6 will emit the old diagnostics if you pass
-std=c++03.Alternatively, recent versions of both GCC and Clang support the warning option
-Wextra-semiwhich specifically warns about redundant semicolons. Thanks to HolyBlackCat for mentioning this.