PDA

View Full Version : Xcode error?


bronxbomber92
2006.11.02, 10:33 PM
I get this odd error: http://img430.imageshack.us/img430/4493/screenshot1od1.png

And I have no idea what it means, or how to fix it :\ :blink:

Any help would be appreciated...

OneSadCookie
2006.11.02, 10:45 PM
The most likely explanation:

resPath is a function defined in a header, but not marked inline.

If that's the case, either mark it inline in the header, or declare it in the header and define it in one .cpp file.

bronxbomber92
2006.11.02, 10:48 PM
Yep, that worked... Thanks :)