IvarInvalidationChecker.cpp: Remove an unused member, InterfD. [-Wunused-private-field]

llvm-svn: 164745
This commit is contained in:
NAKAMURA Takumi 2012-09-27 01:52:00 +00:00
parent 5eeac4f813
commit 453807fffe
1 changed files with 1 additions and 2 deletions

View File

@ -45,7 +45,6 @@ class IvarInvalidationChecker :
/// Statement visitor, which walks the method body and flags the ivars
/// referenced in it (either directly or via property).
class MethodCrawler : public ConstStmtVisitor<MethodCrawler> {
const ObjCInterfaceDecl *InterfD;
/// The set of Ivars which need to be invalidated.
IvarSet &IVars;
@ -60,7 +59,7 @@ class IvarInvalidationChecker :
MethodCrawler(const ObjCInterfaceDecl *InID,
IvarSet &InIVars, MethToIvarMapTy &InPropertySetterToIvarMap,
PropToIvarMapTy &InPropertyToIvarMap)
: InterfD(InID), IVars(InIVars),
: IVars(InIVars),
PropertySetterToIvarMap(InPropertySetterToIvarMap),
PropertyToIvarMap(InPropertyToIvarMap) {}