When can I find the list of all warnings I can turn on for Intel C++ compilers?
Thanks.
Why not think and try using -
"-Weffc++" (enables warnings based on C++ guidelines)
"-Werror" (forces warnings to be reported as errors)
"-Werror-all" (change all warnings & remarks to errors)
"-diag-enable sv
" (enables static-verification and n specifies severity level of diagnostics as n=1[all critical], n=2[all errors], n=3[all errors & warnings)
"-w2" (display errors, warning & remarks)
~BR