Disabling C++11 in GCC 7.3
Try adding -std=gnu++98
, it was probably the default for gcc 6.4.0.
Example:
g++ -std=gnu++98 hello.cpp -o hello
Try adding -std=gnu++98
, it was probably the default for gcc 6.4.0.
Example:
g++ -std=gnu++98 hello.cpp -o hello