minovsky
minovsky

Reputation: 857

Xcode: how to force build under "unused function" and "unused parameters" failures

Hi I am trying to incorporate the zxing qr code reader into my app. I checked out the svn directly from google code website and also added all the header path in my project settings. However when I try to build the project I am getting a lot of "unused function" and "unused parameters" failures and thus cannot build.

for example, there is a method in the ZXingWidget project called "- (void)cancel:(id)sender" and I am getting errors for unused parameter "sender".

Is it possible for me to force build the project?

Thanks in advance

Upvotes: 2

Views: 2791

Answers (1)

minovsky
minovsky

Reputation: 857

found ans at this question

"So I've gotten rid of the error by removing -Werror and -Wextra. The first tag makes warnings turn into errors. I don't like to have this off right now but I'm stuck."

Upvotes: 3

Related Questions