jdl
jdl

Reputation: 6323

Implicit declaration of function 'funcName' ; Previous implicit declaration of 'funcName' was here?

I get 2 warnings:

Not sure why.

Upvotes: 1

Views: 817

Answers (1)

makdad
makdad

Reputation: 6450

Just what the warning says. An "implicit" declaration of a function is usually one that isn't defined yet. Could you also include the line of code that is giving you that warning?

My first thought is that you are not #import ing some code you need so the compiler knows where to find that function.

Upvotes: 2

Related Questions