Does anyone know how to enable C++11 support in Gimpel flexelint?
To achieve the same as the option -std=c++11 in the GCC compiler
-std=c++11
You can turn it on with -A(C++11) flag
-A(C++11)
The generic way to turn on a wanted standard is: -A(C++year)
-A(C++year)