On Thu, Jun 16, 2011 at 2:05 AM, Chandler Carruth <[email protected]> wrote: > def warn_precedence_conditional : Warning< > - "?: has lower precedence than %0; %0 will be evaluated first">, > + "operator '?:' has lower precedence than '%0'; '%0' will be evaluated > first">, > InGroup<Parentheses>; > def note_precedence_conditional_first : Note< > - "place parentheses around the ?: expression to evaluate it first">; > + "place parentheses around the '?:' expression to evaluate it first">; > def note_precedence_conditional_silence : Note< > - "place parentheses around the %0 expression to silence this warning">; > + "place parentheses around the '%0' expression to silence this warning">;
Looks good. I basically copied that text from warn_precedence_bitwise_rel. Do you think I should apply your change there as well for consistency? _______________________________________________ cfe-commits mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits
