icc - How to disable warning using a pragma with intel c++ compiler -


i cannot find reliable document on how avoid warnings pragma. documentation says warning pragma compatible microsoft compiler should be:

#pragma warning ( push ) #pragma warning ( disable:1234 ) #pragma warning ( pop ) 

which not working icc (icc) 15.0.3 20150407 on gnu/linux system.

however, working is:

#pragma warning disable 1234 

i not find working syntax push/pop however. know official documentation that?


Comments

Popular posts from this blog

routing - AngularJS State management ->load multiple states in one page -

python - GRASS parser() error -

post - imageshack API cURL -