Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What's the best way to suppress "unused parameter" warning in C code.

For instance,

Bool NullFunc(const struct timespec *when, const char *who, unsigned short format, void *data, int len)
{
   return TRUE;
}

In C++ I was able to put /.../ around the parameters. But not in C of course.

It gives me "error: parameter name omitted".

Some tips would be appreciated.

share|improve this question

5 Answers

up vote 47 down vote accepted

I usually write a macro like this:

#define UNUSED(x) (void)(x)

You can use this macro for all your unused parameters. (Note that this works on any compiler.)

For example:

void f(int x) {
    UNUSED(x);
    ...
}
share|improve this answer
2  
ahhhh a for awesome. thanx man. – nixgadgets Aug 30 '10 at 9:19
I just use (void)x directly – Prof. Falken May 30 '12 at 11:27
+1. And finally a portable solution. – Jack Nov 7 '12 at 2:24
while this is the only portable way AFAIK, the annoyance with this is it can be misleading if you use the variable later and forget ro remove the unused line. this is why GCC's unused is nice. – ideasman42 Nov 7 '12 at 13:58
1  
@CookSchelling: Ah but you shouldn't use it like that. Do something like this: void f(int x) {UNUSED(x);}. – Job Jan 17 at 7:00
show 4 more comments

In gcc, you can label the parameter with the unused attribute.

share|improve this answer

As mentioned by @Philip Potter you can use the gcc attribute, I use these macros in a header to avoid GCC specific code, also having __attribute__ all over is a bit ugly.

#ifdef __GNUC__
#  define UNUSED(x) UNUSED_ ## x __attribute__((__unused__))
#else
#  define UNUSED(x) UNUSED_ ## x
#endif

#ifdef __GNUC__
#  define UNUSED_FUNCTION(x) __attribute__((__unused__)) UNUSED_ ## x
#else
#  define UNUSED_FUNCTION(x) UNUSED_ ## x
#endif

Then you can do...

void foo(int UNUSED(bar)) { ... }

and for functions...

static void UNUSED_FUNCTION(foo)(int bar) { ... }

I prefer this because you get an error if you try use bar in the code anywhere so you cant leave the attribute in by mistake.

note: as far as I know, MSVC doesn't have an equivalent.

share|improve this answer

I've seen this style beeing used:

if (when || who || format || data || len);
share|improve this answer
8  
Hm. I cannot say I like this, as this assumes all parameters involved can be converted to a bool. – Suma Dec 21 '11 at 7:05
This isn't really a good convention, even though the compiler almost certainly will optimize it out, its not really clear whats going on and could confuse static source checkers. better use one of the other suggestions here IMHO. – ideasman42 Oct 31 '12 at 4:08
I can't believe I'm still getting replies to this. The question stated that it was for C. Yes, in another language this wouldn't work. – Iustin Mar 17 at 14:11

For the record, I like Job's answer above but I'm curious about a solution just using the variable name by itself in a "do-nothing" statement:

void foo(int x) {
    x; /* unused */
    ...
}

Sure, this has drawbacks; for instance, without the "unused" note it looks like a mistake rather than an intentional line of code.

The benefit is that no DEFINE is needed and it gets rid of the warning.

Are there any performance, optimization, or other differences?

share|improve this answer
I either used this with MSVC, but GCC raises "statement without effect" warning. So, Job's solution is the way to go. – Dmitry Semikin May 14 at 6:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.