]> granicus.if.org Git - clang/commitdiff
Clean up some whitespace and comments from this test that were remnants of
authorChandler Carruth <chandlerc@gmail.com>
Fri, 3 Sep 2010 21:17:53 +0000 (21:17 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Fri, 3 Sep 2010 21:17:53 +0000 (21:17 +0000)
a previous iteration of the test.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@113013 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGenCXX/template-anonymous-types.cpp

index 0b219ffc123b91e38422e837a440beed3319a2d9..5e7a71fd8772fabe19264b364f50d3d59de9dfe7 100644 (file)
@@ -7,10 +7,7 @@ struct S {
 
 template <typename T> struct X {
   T value;
-
   X(T t) : value(t) {}
-
-  // Again, two instantiations should be present.
   int f() { return value; }
 };