Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!sun-barr!newstop!texsun!vector!egsner!ntpal!herrage From: herrage@ntpal.UUCP (Robert Herrage) Newsgroups: comp.lang.c++ Subject: Re: Can I turn off specific "not used" warnings in cfront? Message-ID: <1084@ntpal.UUCP> Date: 13 Nov 90 14:01:45 GMT References: <11704@spool.cs.wisc.edu> Organization: Bell Northern Research, Inc., Richardson, TX Lines: 18 I'm sending this a different way since the first way hasn't been working very well. So, if you're getting this again, I apologize. Yes! You can eliminate the "not used" warnings! Below is a simple example: void funcname( int x; int y; int z ) { x,y; // this will eliminate the "not used" warnings printf( "%d", z ); }