Update all tests other than Driver/std.cpp to use -std=c++11 rather than
-std=c++0x. Patch by Ahmed Charles!
llvm-svn: 141900
diff --git a/clang/test/Index/in-class-init.cpp b/clang/test/Index/in-class-init.cpp
index 94694340..61431ca 100644
--- a/clang/test/Index/in-class-init.cpp
+++ b/clang/test/Index/in-class-init.cpp
@@ -2,5 +2,5 @@
int field = 2;
};
-// RUN: c-index-test -test-load-source all -std=c++0x %s | FileCheck %s
+// RUN: c-index-test -test-load-source all -std=c++11 %s | FileCheck %s
// CHECK: 2:7: FieldDecl=field:2:7 (Definition) Extent=[2:3 - 2:16]