[libcxx] r299907 - Remove some trigraphs that GCC was complaining about

Marshall Clow via cfe-commits cfe-commits at lists.llvm.org
Mon Apr 10 17:18:28 PDT 2017


Author: marshall
Date: Mon Apr 10 19:18:28 2017
New Revision: 299907

URL: http://llvm.org/viewvc/llvm-project?rev=299907&view=rev
Log:
Remove some trigraphs that GCC was complaining about

Modified:
    libcxx/trunk/test/std/utilities/meta/meta.trans/meta.trans.other/common_type.pass.cpp

Modified: libcxx/trunk/test/std/utilities/meta/meta.trans/meta.trans.other/common_type.pass.cpp
URL: http://llvm.org/viewvc/llvm-project/libcxx/trunk/test/std/utilities/meta/meta.trans/meta.trans.other/common_type.pass.cpp?rev=299907&r1=299906&r2=299907&view=diff
==============================================================================
--- libcxx/trunk/test/std/utilities/meta/meta.trans/meta.trans.other/common_type.pass.cpp (original)
+++ libcxx/trunk/test/std/utilities/meta/meta.trans/meta.trans.other/common_type.pass.cpp Mon Apr 10 19:18:28 2017
@@ -45,8 +45,8 @@ namespace std
 
     template <> struct common_type< ::S<long>, long> {};
     template <> struct common_type<long, ::S<long> > {};
-    template <> struct common_type<::X<float> > {};
-    template <> struct common_type<::X<double>, ::X<double> > {};
+    template <> struct common_type< ::X<float> > {};
+    template <> struct common_type< ::X<double>, ::X<double> > {};
 }
 
 #if TEST_STD_VER >= 11




More information about the cfe-commits mailing list