mirror of https://github.com/llvm-mirror/libcxx
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
test/std/algorithms/alg.modifying.operations/alg.generate/generate_n.pass.cpp Silence MSVC warning C4244. This is expected when passing floating-point values for size. test/std/utilities/template.bitset/bitset.members/to_ullong.pass.cpp test/std/utilities/template.bitset/bitset.members/to_ulong.pass.cpp Avoid MSVC "warning C4293: '<<': shift count negative or too big, undefined behavior". MSVC sees (1ULL << N) and warns - being guarded by const bool canFit is insufficient. A small change to the code avoids the warning without the need for a pragma. Remove a spurious printf() declaration from to_ullong.pass.cpp. Change ULL to UL in to_ulong.pass.cpp. The ULL suffix was probably copy-pasted. test/std/utilities/tuple/tuple.general/ignore.pass.cpp Use LIBCPP_STATIC_ASSERT for consistency with other files. test/support/container_test_types.h Fix a null pointer dereference, found by MSVC /analyze warning C6011 "Dereferencing NULL pointer 'm_expected_args'." Fixes D41030. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@320535 91177308-0d34-0410-b5e6-96231b3b80d8 |
8 years ago | |
|---|---|---|
| .. | ||
| all.pass.cpp | 9 years ago | |
| any.pass.cpp | 9 years ago | |
| count.pass.cpp | 9 years ago | |
| flip_all.pass.cpp | 9 years ago | |
| flip_one.pass.cpp | 9 years ago | |
| index.pass.cpp | 9 years ago | |
| index_const.pass.cpp | 9 years ago | |
| left_shift.pass.cpp | 9 years ago | |
| left_shift_eq.pass.cpp | 9 years ago | |
| none.pass.cpp | 9 years ago | |
| not_all.pass.cpp | 9 years ago | |
| op_and_eq.pass.cpp | 9 years ago | |
| op_eq_eq.pass.cpp | 9 years ago | |
| op_or_eq.pass.cpp | 9 years ago | |
| op_xor_eq.pass.cpp | 9 years ago | |
| reset_all.pass.cpp | 9 years ago | |
| reset_one.pass.cpp | 9 years ago | |
| right_shift.pass.cpp | 9 years ago | |
| right_shift_eq.pass.cpp | 9 years ago | |
| set_all.pass.cpp | 9 years ago | |
| set_one.pass.cpp | 9 years ago | |
| size.pass.cpp | 11 years ago | |
| test.pass.cpp | 9 years ago | |
| to_string.pass.cpp | 9 years ago | |
| to_ullong.pass.cpp | 8 years ago | |
| to_ulong.pass.cpp | 8 years ago | |