Suppress a warning

llvm-svn: 63310
This commit is contained in:
Douglas Gregor 2009-01-29 16:09:46 +00:00
parent 5537b8bc6c
commit 4f5a889dc6
1 changed files with 2 additions and 2 deletions

View File

@ -1432,8 +1432,8 @@ void Sema::CheckObjCPropertyAttributes(QualType PropertyTy,
"copy" : "retain";
Diag(Loc, (Attributes & (ObjCDeclSpec::DQ_PR_readwrite)) ?
diag::err_objc_property_attr_mutually_exclusive :
diag::warn_objc_property_attr_mutually_exclusive)
(unsigned)diag::err_objc_property_attr_mutually_exclusive :
(unsigned)diag::warn_objc_property_attr_mutually_exclusive)
<< "readonly" << which;
}