This is the mail archive of the gcc-help@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

warn about function without & or arguments?


If I have e.g.

typedef void (* fp)();

void foo() { ...}
void bar(fp f) { ... }

int main() {
  bar(foo); // <-- should generate a warning!
}

...is there a warning flag (for C) in either gcc 3.4.4 or 4.x to warn about using 'foo' (as opposed to 'foo()' or '&foo')?

--
Matthew
GDRLaH - Grin, Duck, and Run Like a Hippo! :-)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]