diff options
author | Hans Wennborg <hans@hanshq.net> | 2013-12-14 00:46:53 +0000 |
---|---|---|
committer | Hans Wennborg <hans@hanshq.net> | 2013-12-14 00:46:53 +0000 |
commit | 9b395ef284341ee7f3525bb55f72c8b8e43a85b2 (patch) | |
tree | 73f59139554d4f31242c80e4fc2768d56f78e041 /clang/test/SemaCXX/nested-name-spec.cpp | |
parent | 57ae056a5c0d616ee3fd1d8136b74c2854a68a60 (diff) | |
download | bcm5719-llvm-9b395ef284341ee7f3525bb55f72c8b8e43a85b2.tar.gz bcm5719-llvm-9b395ef284341ee7f3525bb55f72c8b8e43a85b2.zip |
Don't require -re suffix on -verify directives with regexes.
Differential Revision: http://llvm-reviews.chandlerc.com/D2392
llvm-svn: 197295
Diffstat (limited to 'clang/test/SemaCXX/nested-name-spec.cpp')
-rw-r--r-- | clang/test/SemaCXX/nested-name-spec.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/SemaCXX/nested-name-spec.cpp b/clang/test/SemaCXX/nested-name-spec.cpp index a0bac059a20..ba768b502af 100644 --- a/clang/test/SemaCXX/nested-name-spec.cpp +++ b/clang/test/SemaCXX/nested-name-spec.cpp @@ -143,7 +143,7 @@ namespace A { void g(int&); // expected-note{{type of 1st parameter of member declaration does not match definition ('int &' vs 'const int &')}} } -void A::f() {} // expected-error-re{{out-of-line definition of 'f' does not match any declaration in namespace 'A'{{$}}}} +void A::f() {} // expected-error{{out-of-line definition of 'f' does not match any declaration in namespace 'A'{{$}}}} void A::g(const int&) { } // expected-error{{out-of-line definition of 'g' does not match any declaration in namespace 'A'}} |