aboutsummaryrefslogtreecommitdiff
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
commitb91649916175c009262dcc6beed4d5b6485d3285 (patch)
treed2709ed156abd8c78fc1cc7d151fdbdec074e891
parentef3cf2b95460f12d1f69a4dd3babc74b9406d45a (diff)
downloadllvm-b91649916175c009262dcc6beed4d5b6485d3285.zip
llvm-b91649916175c009262dcc6beed4d5b6485d3285.tar.gz
llvm-b91649916175c009262dcc6beed4d5b6485d3285.tar.bz2
Clean up some whitespace and comments from this test that were remnants of
a previous iteration of the test. llvm-svn: 113013
-rw-r--r--clang/test/CodeGenCXX/template-anonymous-types.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/clang/test/CodeGenCXX/template-anonymous-types.cpp b/clang/test/CodeGenCXX/template-anonymous-types.cpp
index 0b219ff..5e7a71f 100644
--- a/clang/test/CodeGenCXX/template-anonymous-types.cpp
+++ b/clang/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; }
};