[cfe-commits] r113013 - /cfe/trunk/test/CodeGenCXX/template-anonymous-types.cpp

Chandler Carruth chandlerc at gmail.com
Fri Sep 3 14:17:53 PDT 2010


Author: chandlerc
Date: Fri Sep  3 16:17:53 2010
New Revision: 113013

URL: http://llvm.org/viewvc/llvm-project?rev=113013&view=rev
Log:
Clean up some whitespace and comments from this test that were remnants of
a previous iteration of the test.

Modified:
    cfe/trunk/test/CodeGenCXX/template-anonymous-types.cpp

Modified: cfe/trunk/test/CodeGenCXX/template-anonymous-types.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/template-anonymous-types.cpp?rev=113013&r1=113012&r2=113013&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenCXX/template-anonymous-types.cpp (original)
+++ cfe/trunk/test/CodeGenCXX/template-anonymous-types.cpp Fri Sep  3 16:17:53 2010
@@ -7,10 +7,7 @@
 
 template <typename T> struct X {
   T value;
-
   X(T t) : value(t) {}
-
-  // Again, two instantiations should be present.
   int f() { return value; }
 };
 





More information about the cfe-commits mailing list