]> granicus.if.org Git - clang/commitdiff
Revert accidentally-committed test change from r239447.
authorRichard Smith <richard-llvm@metafoo.co.uk>
Wed, 10 Jun 2015 01:36:14 +0000 (01:36 +0000)
committerRichard Smith <richard-llvm@metafoo.co.uk>
Wed, 10 Jun 2015 01:36:14 +0000 (01:36 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@239452 91177308-0d34-0410-b5e6-96231b3b80d8

test/Modules/Inputs/template-default-args/a.h
test/Modules/Inputs/template-default-args/module.modulemap
test/Modules/template-default-args.cpp

index 3e415358243e655c260045361ebe9b44e13f0c10..1ef1ea5907b52b0d3e8870db3966c98d8e3bb002 100644 (file)
@@ -2,4 +2,3 @@ template<typename T = int> struct A {};
 template<typename T> struct B {};
 template<typename T> struct C;
 template<typename T> struct D;
-template<typename T> struct E;
index d54dfc345abf976fe5ac4702304c012dd02ddb74..6182e6b3eee12aa2d5726863897957afd67e0d95 100644 (file)
@@ -1,5 +1 @@
-module X {
-  module A { header "a.h" }
-  module B { header "b.h" }
-  module C { header "c.h" }
-}
+module X { module A { header "a.h" } module B { header "b.h" } }
index 97569f0aa33b152e3a8135cdb34dc23c99c7e788..63187b8dc190bb6b0934927287e95acc6143c740 100644 (file)
@@ -7,7 +7,6 @@ template<typename T> struct A;
 template<typename T> struct B;
 template<typename T> struct C;
 template<typename T = int> struct D;
-template<typename T = int> struct E {};
 
 #include "b.h"
 
@@ -16,13 +15,8 @@ template<typename T> struct B {};
 template<typename T = int> struct B;
 template<typename T = int> struct C;
 template<typename T> struct D {};
-template<typename T> struct F {};
-
-#include "c.h"
 
 A<> a;
 B<> b;
 extern C<> c;
 D<> d;
-E<> e;
-F<> f;