diff options
author | Ismail Pazarbasi <ismail.pazarbasi@gmail.com> | 2014-03-07 22:36:23 +0000 |
---|---|---|
committer | Ismail Pazarbasi <ismail.pazarbasi@gmail.com> | 2014-03-07 22:36:23 +0000 |
commit | 025f428c7303c6b9e11d2a944fe68becd80b7449 (patch) | |
tree | 00b960efc4ec06d5205c711594d2ddc196dfd3ef /clang/test/Parser/cxx-decl.cpp | |
parent | ab9da5129a0a670a863d58c94f67de0cf276273c (diff) | |
download | bcm5719-llvm-025f428c7303c6b9e11d2a944fe68becd80b7449.tar.gz bcm5719-llvm-025f428c7303c6b9e11d2a944fe68becd80b7449.zip |
Replace "can not" with "cannot" in diagnostics messages.
llvm-svn: 203302
Diffstat (limited to 'clang/test/Parser/cxx-decl.cpp')
-rw-r--r-- | clang/test/Parser/cxx-decl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/Parser/cxx-decl.cpp b/clang/test/Parser/cxx-decl.cpp index cc429f6070c..be79eb433fd 100644 --- a/clang/test/Parser/cxx-decl.cpp +++ b/clang/test/Parser/cxx-decl.cpp @@ -181,7 +181,7 @@ void test (DIE die, DIE *Die, DIE INT, DIE *FLOAT) { } namespace PR15017 { - template<typename T = struct X { int i; }> struct S {}; // expected-error {{'PR15017::X' can not be defined in a type specifier}} + template<typename T = struct X { int i; }> struct S {}; // expected-error {{'PR15017::X' cannot be defined in a type specifier}} } // Ensure we produce at least some diagnostic for attributes in C++98. |