[cfe-commits] r153044 - /cfe/trunk/include/clang/Basic/DiagnosticDriverKinds.td
Matt Beaumont-Gay
matthewbg at google.com
Mon Mar 19 11:36:29 PDT 2012
Author: matthewbg
Date: Mon Mar 19 13:36:28 2012
New Revision: 153044
URL: http://llvm.org/viewvc/llvm-project?rev=153044&view=rev
Log:
Use a simpler pluralization construct
Modified:
cfe/trunk/include/clang/Basic/DiagnosticDriverKinds.td
Modified: cfe/trunk/include/clang/Basic/DiagnosticDriverKinds.td
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/DiagnosticDriverKinds.td?rev=153044&r1=153043&r2=153044&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/DiagnosticDriverKinds.td (original)
+++ cfe/trunk/include/clang/Basic/DiagnosticDriverKinds.td Mon Mar 19 13:36:28 2012
@@ -42,7 +42,7 @@
def err_drv_invalid_darwin_version : Error<
"invalid Darwin version number: %0">;
def err_drv_missing_argument : Error<
- "argument to '%0' is missing (expected %1 %plural{1:value|:values}1)">;
+ "argument to '%0' is missing (expected %1 value%s1)">;
def err_drv_invalid_Xarch_argument_with_args : Error<
"invalid Xarch argument: '%0', options requiring arguments are unsupported">;
def err_drv_invalid_Xarch_argument_isdriver : Error<
More information about the cfe-commits
mailing list