diff options
author | Howard Hinnant <hhinnant@apple.com> | 2011-05-17 19:12:55 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2011-05-17 19:12:55 +0000 |
commit | fe7e3eeddcd8ccb6ed1bb4f7589ffaa87139b135 (patch) | |
tree | d60d35be9b031c770858134b62c98acf2b964bd1 /libcxx/test/utilities/template.bitset/bitset.members/right_shift_eq.pass.cpp | |
parent | 35ab91cc8927706480fd6c802ff3615e1226f376 (diff) | |
download | bcm5719-llvm-fe7e3eeddcd8ccb6ed1bb4f7589ffaa87139b135.tar.gz bcm5719-llvm-fe7e3eeddcd8ccb6ed1bb4f7589ffaa87139b135.zip |
Clean up a bunch of warnings in the tests, 3 of which actually turned out to be test bugs.
llvm-svn: 131479
Diffstat (limited to 'libcxx/test/utilities/template.bitset/bitset.members/right_shift_eq.pass.cpp')
-rw-r--r-- | libcxx/test/utilities/template.bitset/bitset.members/right_shift_eq.pass.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libcxx/test/utilities/template.bitset/bitset.members/right_shift_eq.pass.cpp b/libcxx/test/utilities/template.bitset/bitset.members/right_shift_eq.pass.cpp index c04b7591a0a..1dd89c1844b 100644 --- a/libcxx/test/utilities/template.bitset/bitset.members/right_shift_eq.pass.cpp +++ b/libcxx/test/utilities/template.bitset/bitset.members/right_shift_eq.pass.cpp @@ -13,6 +13,8 @@ #include <cstdlib> #include <cassert> +#pragma clang diagnostic ignored "-Wtautological-compare" + template <std::size_t N> std::bitset<N> make_bitset() |