How can I temporarily supress a Compiler Warning just for one function? I thougt about
#pragma WARNING disable = 47 void my_function(int iTest) { //do nothing, //iTest is an unreference Parameter! } #pragma ???
Review this thread: http://www.keil.com/forum/docs/thread2356.asp At has the answer to your question and more. - mike