]> granicus.if.org Git - clang/commitdiff
fix typo in test.
authorFrancois Pichet <pichet2000@gmail.com>
Sun, 14 Aug 2011 22:30:29 +0000 (22:30 +0000)
committerFrancois Pichet <pichet2000@gmail.com>
Sun, 14 Aug 2011 22:30:29 +0000 (22:30 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@137592 91177308-0d34-0410-b5e6-96231b3b80d8

test/SemaTemplate/ms-function-specialization-class-scope.cpp

index 8821501600999e3d41924f5a4b8f750217e4c888..bda87f99c9a15e0910cbd25630db84e0dc284d65 100644 (file)
@@ -7,7 +7,7 @@ public:
     A(U p) {
        }
        template <>
-    A(int p) { // expected-warning{{explicit specialization of 'A' within class scope in a Microsoft extension}}
+    A(int p) { // expected-warning{{explicit specialization of 'A' within class scope is a Microsoft extension}}
        }
        
        template <class U>
@@ -15,7 +15,7 @@ public:
        }
 
        template <>
-    void f(int p) { // expected-warning{{explicit specialization of 'f' within class scope in a Microsoft extension}}
+    void f(int p) { // expected-warning{{explicit specialization of 'f' within class scope is a Microsoft extension}}
        }
 
        void f(int p) { 
@@ -41,7 +41,7 @@ public:
     B(U p) { 
        }
        template <>
-    B(int p) { // expected-warning{{explicit specialization of 'B<T>' within class scope in a Microsoft extension}}
+    B(int p) { // expected-warning{{explicit specialization of 'B<T>' within class scope is a Microsoft extension}}
        }
        
        template <class U>
@@ -51,7 +51,7 @@ public:
 
 
     template <>
-    void f(int p) { // expected-warning{{explicit specialization of 'f' within class scope in a Microsoft extension}}
+    void f(int p) { // expected-warning{{explicit specialization of 'f' within class scope is a Microsoft extension}}
          T a = 3;
        }