[cfe-commits] r168535 - /cfe/trunk/include/clang/Basic/DiagnosticParseKinds.td
Nico Weber
nicolasweber at gmx.de
Fri Nov 23 19:20:21 PST 2012
Author: nico
Date: Fri Nov 23 21:20:20 2012
New Revision: 168535
URL: http://llvm.org/viewvc/llvm-project?rev=168535&view=rev
Log:
Make err_module_expected_semi consistent with all the other expected_semi diags.
Modified:
cfe/trunk/include/clang/Basic/DiagnosticParseKinds.td
Modified: cfe/trunk/include/clang/Basic/DiagnosticParseKinds.td
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Basic/DiagnosticParseKinds.td?rev=168535&r1=168534&r2=168535&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/DiagnosticParseKinds.td (original)
+++ cfe/trunk/include/clang/Basic/DiagnosticParseKinds.td Fri Nov 23 21:20:20 2012
@@ -768,7 +768,7 @@
def err_module_expected_ident : Error<
"expected a module name after module import">;
def err_module_expected_semi : Error<
- "expected a semicolon name after module name">;
+ "expected ';' after module name">;
}
} // end of Parser diagnostics
More information about the cfe-commits
mailing list