aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Jasper <djasper@google.com>2012-07-16 12:12:45 +0000
committerDaniel Jasper <djasper@google.com>2012-07-16 12:12:45 +0000
commite994bb6b02f061c4e2442abe0c72913f6a74b961 (patch)
treee9f974cb2117935fcc850394e326c670f8c5abb1
parentfef3f6f6e920d5beb4b62f252cc96f1b9d871d59 (diff)
Add two more missing parameters in diagnostics.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@160264 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/Basic/DiagnosticSemaKinds.td4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/clang/Basic/DiagnosticSemaKinds.td b/include/clang/Basic/DiagnosticSemaKinds.td
index 4c07fc6fa6..5891274238 100644
--- a/include/clang/Basic/DiagnosticSemaKinds.td
+++ b/include/clang/Basic/DiagnosticSemaKinds.td
@@ -4568,7 +4568,7 @@ def err_typecheck_convert_incompatible : Error<
"|%diff{returning $ from a function with incompatible result type $|"
"returning type from a function with incompatible result type}0,1"
"|%diff{converting $ to incompatible type $|"
- "converting type to incompatible type}"
+ "converting type to incompatible type}0,1"
"|%diff{initializing $ with an expression of incompatible type $|"
"initializing type with an expression of incompatible type}0,1"
"|%diff{sending $ to parameter of incompatible type $|"
@@ -4601,7 +4601,7 @@ def warn_incompatible_qualified_id : Warning<
"|%diff{returning $ from a function with incompatible result type $|"
"returning type from a function with incompatible result type}0,1"
"|%diff{converting $ to incompatible type $|"
- "converting type to incompatible type}"
+ "converting type to incompatible type}0,1"
"|%diff{initializing $ with an expression of incompatible type $|"
"initializing type with an expression of incompatible type}0,1"
"|%diff{sending $ to parameter of incompatible type $|"