Remove some trigraphs that GCC was complaining about

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@299907 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Marshall Clow
2017-04-11 00:18:28 +00:00
parent a43fe06888
commit 726efd8dfd

View File

@@ -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