]> granicus.if.org Git - clang/commitdiff
Remove FIXME obsoleted by change r141279 for PR11067.
authorRichard Smith <richard-llvm@metafoo.co.uk>
Fri, 7 Oct 2011 03:16:33 +0000 (03:16 +0000)
committerRichard Smith <richard-llvm@metafoo.co.uk>
Fri, 7 Oct 2011 03:16:33 +0000 (03:16 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@141351 91177308-0d34-0410-b5e6-96231b3b80d8

test/FixIt/fixit-cxx0x.cpp

index 8c404b66119853dea44539eac11ebb5f75349b42..ae0c0a3373f57ddbd90f7638217a9eb555430d2c 100644 (file)
@@ -40,15 +40,10 @@ namespace Constexpr {
   // FIXME: Provide FixIts for static data members too.
 #if 0
   struct S {
-    static constexpr int a = 0;
-
     static constexpr int b; // xpected-error {{requires an initializer}}
     // -> const int b;
   };
 
-  constexpr int S::a; // xpected-error {{requires an initializer}}
-  // -> const int S::a;
-
   constexpr int S::b = 0;
 #endif