]> granicus.if.org Git - clang/commitdiff
Fix test failure after r333485. Try 2.
authorEric Fiselier <eric@efcs.ca>
Wed, 30 May 2018 02:20:40 +0000 (02:20 +0000)
committerEric Fiselier <eric@efcs.ca>
Wed, 30 May 2018 02:20:40 +0000 (02:20 +0000)
Sorry for the breakage.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@333491 91177308-0d34-0410-b5e6-96231b3b80d8

test/Misc/diag-template-diffing.cpp

index 41c702096e6449de164307088f80035c721517b8..5c85df434df1d941fe04df596b251e29b6b4137c 100644 (file)
@@ -1401,7 +1401,7 @@ void run() {
   f(1, integral_constant<bool, true>{});
 }
 // CHECK-ELIDE-NOTREE: error: no matching function for call to 'f'
-// CHECK-ELIDE-NOTREE: note: candidate function not viable: no known conversion from 'integral_constant<[...], true>' to 'integral_constant<[...], false>' for 2nd argument
+// CHECK-ELIDE-NOTREE: note: candidate function template not viable: no known conversion from 'integral_constant<[...], true>' to 'integral_constant<[...], false>' for 2nd argument
 }
 
 namespace ZeroArgs {
@@ -1454,7 +1454,7 @@ void run() {
   D<X::X1>(VectorType<X::X2>());
 }
 // CHECK-ELIDE-NOTREE: error: no matching function for call to 'D'
-// CHECK-ELIDE-NOTREE: note: candidate function not viable: no known conversion from 'VectorType<X::X2>' to 'const VectorType<(TypeAlias::X)0>' for 1st argument
+// CHECK-ELIDE-NOTREE: note: candidate function template not viable: no known conversion from 'VectorType<X::X2>' to 'const VectorType<(TypeAlias::X)0>' for 1st argument
 }
 
 namespace TypeAlias2 {