• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Overkill - Declaration of 'XXX' shadows a member of 'this'
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Overkill - Declaration of 'XXX' shadows a member of 'this'


  • Subject: Overkill - Declaration of 'XXX' shadows a member of 'this'
  • From: Matt Gough <email@hidden>
  • Date: Tue, 16 Feb 2010 11:19:06 +0000

I just turned on GCC_WARN_SHADOW in the hope of finding those rare occasions where a local var shadows another local var at a higher scope and the 'wrong' one gets used. What I didn't expect were the 8000 warnings along the lines of  'Declaration of 'XXX' shadows a member of 'this' .

What is really annoying is that its not complaining about member variables, but method names.

E.g:

class MyClass {
public:
	int cheeseType() const {return _cheeseType;}
	void setCheeseType(int cheeseType) <==== Declaration of 'cheeseType' shadows a member of 'this'
		{_cheeseType = cheeseType;}

private:
	int _cheeseType;
}

Is there any way to disable this warning whilst still retaining the intended use case (without renaming all my input parameters)

BTW - GCC 4.2, Xcode 3.2.1

Thanks

Matt Gough _______________________________________________
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

  • Follow-Ups:
    • Re: Overkill - Declaration of 'XXX' shadows a member of 'this'
      • From: Keary Suska <email@hidden>
    • Re: Overkill - Declaration of 'XXX' shadows a member of 'this'
      • From: Fritz Anderson <email@hidden>
  • Prev by Date: Re: Compiler Error (expected expression before 'NSArray')
  • Next by Date: Code Signing for Mac application
  • Previous by thread: Re: is interface builder suppose to autosave upon build?
  • Next by thread: Re: Overkill - Declaration of 'XXX' shadows a member of 'this'
  • Index(es):
    • Date
    • Thread