Re: Clang analysis: Debug variables "never read."
Re: Clang analysis: Debug variables "never read."
- Subject: Re: Clang analysis: Debug variables "never read."
- From: Quincey Morris <email@hidden>
- Date: Fri, 2 Oct 2009 11:32:01 -0700
__unused seems to work fine with the analyzer. With this code:
int testme;
testme = 0;
the analyzer said "never read", but with this:
int __unused testme;
testme = 0;
it had nothing to say.
The project I tried it in uses LLVM-GCC, if that matters.
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden