On Tue, Apr 17, 2012 at 13:40, David Blaikie <[email protected]> wrote: > On Tue, Apr 17, 2012 at 1:36 PM, Matt Beaumont-Gay <[email protected]> > wrote: >> Author: matthewbg >> Date: Tue Apr 17 15:36:24 2012 >> New Revision: 154949 >> >> URL: http://llvm.org/viewvc/llvm-project?rev=154949&view=rev >> Log: >> add missing parameter index to diag > > Is there a missing or underconstrained test case here?
Probably :) I think this was John's code originally, cc'd for further discussion. > >> >> Modified: >> cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td >> >> Modified: cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td >> URL: >> http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td?rev=154949&r1=154948&r2=154949&view=diff >> ============================================================================== >> --- cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td (original) >> +++ cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td Tue Apr 17 15:36:24 >> 2012 >> @@ -3912,7 +3912,7 @@ >> def err_nogetter_property_compound_assignment : Error< >> "a getter method is needed to perform a compound assignment on a >> property">; >> def err_nogetter_property_incdec : Error< >> - "no getter method %1 for %select{increment|decrement} of property">; >> + "no getter method %1 for %select{increment|decrement}0 of property">; >> def error_no_subobject_property_setting : Error< >> "expression is not assignable">; >> def err_qualified_objc_access : Error< >> >> >> _______________________________________________ >> cfe-commits mailing list >> [email protected] >> http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits _______________________________________________ cfe-commits mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits
