I am currently using Xcode 4, and in my .pch file I have this macro: #define localize(s) NSLocalizedString((s), nil).
When I try to use this macro in some .m file, I receive this warning: Implicit declaration of function 'localize' is invalid in C99.

This code compiles without a problem, but how can I fix this so I don't get a warning?

link|improve this question

75% accept rate
I wasn't able to reproduce the issue, it compiles and runs just fine, no warnings. – Lio Aug 12 '11 at 20:36
It seems it was a bug in XCode... 4.0.2 I think. 4.2 betas work fine. – Milos Aug 18 '11 at 12:17
feedback

1 Answer

Implicit function declarations are those that the compiler sees the first time used as a function call (as opposed to those where a prototype is seen first).

Apparently your code used localize(foo) but the macro definition was not visible. Possible reasons: you forgot to #include the file containing the localize macro or the precompilation of headers went south an did not include the localize macro so it was left unexpanded.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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