diff options
Diffstat (limited to 'clang/test/CodeGenObjCXX/blocks.mm')
-rw-r--r-- | clang/test/CodeGenObjCXX/blocks.mm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGenObjCXX/blocks.mm b/clang/test/CodeGenObjCXX/blocks.mm index db88db2cbac..126931d51fa 100644 --- a/clang/test/CodeGenObjCXX/blocks.mm +++ b/clang/test/CodeGenObjCXX/blocks.mm @@ -30,7 +30,7 @@ void foo(id <NSObject>(^objectCreationBlock)(void)) { // Test4 struct S { - S *(^a)() = ^{ // expected-warning {{C++0x}} + S *(^a)() = ^{ // expected-warning {{C++11}} return this; }; }; @@ -40,7 +40,7 @@ S s; struct X { void f() { ^ { - struct Nested { Nested *ptr = this; }; // expected-warning {{C++0x}} + struct Nested { Nested *ptr = this; }; // expected-warning {{C++11}} } (); }; }; |