Search code examples
c++11pc-lint

How to enable C++11 in FlexeLint


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


Solution

  • You can turn it on with -A(C++11) flag

    The generic way to turn on a wanted standard is: -A(C++year)