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

sublimetext3 - what keyboard shortcut is to comment/uncomment for this script tag in sublime -

java - No use of nillable="0" in SOAP Webservice -

ubuntu - Laravel 5.2 quickstart guide gives Not Found Error -