[cfe-commits] r167902 - /cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td
Anders Carlsson
andersca at mac.com
Tue Nov 13 17:39:09 PST 2012
Author: andersca
Date: Tue Nov 13 19:39:09 2012
New Revision: 167902
URL: http://llvm.org/viewvc/llvm-project?rev=167902&view=rev
Log:
Use consistent spelling of 'behavior' in a C++ warning.
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=167902&r1=167901&r2=167902&view=diff
==============================================================================
--- cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td (original)
+++ cfe/trunk/include/clang/Basic/DiagnosticSemaKinds.td Tue Nov 13 19:39:09 2012
@@ -4465,7 +4465,7 @@
def err_ambiguous_delete_operand : Error<"ambiguous conversion of delete "
"expression of type %0 to a pointer">;
def warn_delete_incomplete : Warning<
- "deleting pointer to incomplete type %0 may cause undefined behaviour">,
+ "deleting pointer to incomplete type %0 may cause undefined behavior">,
InGroup<DiagGroup<"delete-incomplete">>;
def err_delete_incomplete_class_type : Error<
"deleting incomplete class type %0; no conversions to pointer type">;
More information about the cfe-commits
mailing list