diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2017-04-11 00:18:28 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2017-04-11 00:18:28 +0000 |
commit | 76ad7d6e242011d59d7341e2c78ea5df6cff0251 (patch) | |
tree | 4806d41f27a54113a853eab8935c2e95a27ebedf /libcxx/test/std | |
parent | a82be60da2ad251d5590c05a22fb8a4209bd9c2f (diff) | |
download | bcm5719-llvm-76ad7d6e242011d59d7341e2c78ea5df6cff0251.tar.gz bcm5719-llvm-76ad7d6e242011d59d7341e2c78ea5df6cff0251.zip |
Remove some trigraphs that GCC was complaining about
llvm-svn: 299907
Diffstat (limited to 'libcxx/test/std')
-rw-r--r-- | libcxx/test/std/utilities/meta/meta.trans/meta.trans.other/common_type.pass.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcxx/test/std/utilities/meta/meta.trans/meta.trans.other/common_type.pass.cpp b/libcxx/test/std/utilities/meta/meta.trans/meta.trans.other/common_type.pass.cpp index db7b4c2f412..506f4757c65 100644 --- a/libcxx/test/std/utilities/meta/meta.trans/meta.trans.other/common_type.pass.cpp +++ b/libcxx/test/std/utilities/meta/meta.trans/meta.trans.other/common_type.pass.cpp @@ -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 |