diff options
| author | David Blaikie <dblaikie@gmail.com> | 2013-03-05 06:21:38 +0000 |
|---|---|---|
| committer | David Blaikie <dblaikie@gmail.com> | 2013-03-05 06:21:38 +0000 |
| commit | e750491ff33d5ab1fbfae5d530a6769074154730 (patch) | |
| tree | adc0bd5a16dd5a19a85b560b2d68c866be8c9716 /clang/test/SemaTemplate/temp_arg.cpp | |
| parent | 69b6b635fa682ffbef589f865cb7799574d4d0d3 (diff) | |
| download | bcm5719-llvm-e750491ff33d5ab1fbfae5d530a6769074154730.tar.gz bcm5719-llvm-e750491ff33d5ab1fbfae5d530a6769074154730.zip | |
Add quotation marks to template names in diagnostics.
llvm-svn: 176474
Diffstat (limited to 'clang/test/SemaTemplate/temp_arg.cpp')
| -rw-r--r-- | clang/test/SemaTemplate/temp_arg.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/SemaTemplate/temp_arg.cpp b/clang/test/SemaTemplate/temp_arg.cpp index 5a4c8fc16fd..052c19ef639 100644 --- a/clang/test/SemaTemplate/temp_arg.cpp +++ b/clang/test/SemaTemplate/temp_arg.cpp @@ -10,7 +10,7 @@ A<int, 0, X> * a1; A<float, 1, X, double> *a2; // expected-error{{too many template arguments for class template 'A'}} A<float, 1> *a3; // expected-error{{too few template arguments for class template 'A'}} -A a3; // expected-error{{use of class template A requires template arguments}} +A a3; // expected-error{{use of class template 'A' requires template arguments}} namespace test0 { template <class t> class foo {}; |

