summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2010-09-03 21:17:53 +0000
committerChandler Carruth <chandlerc@gmail.com>2010-09-03 21:17:53 +0000
commita96a6906601cb5f40ba54cd750c9f87e04568f7d (patch)
tree33206c67733b5ab8ed3d7dae30dadb48ef53511a
parent17fb855280be411389361f1c79753e0013c4187c (diff)
Clean up some whitespace and comments from this test that were remnants of
a previous iteration of the test. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@113013 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGenCXX/template-anonymous-types.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/CodeGenCXX/template-anonymous-types.cpp b/test/CodeGenCXX/template-anonymous-types.cpp
index 0b219ffc12..5e7a71fd87 100644
--- a/test/CodeGenCXX/template-anonymous-types.cpp
+++ b/test/CodeGenCXX/template-anonymous-types.cpp
@@ -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; }
};