
MSVC has compiler warnings C4127 "conditional expression is constant" (enabled by /W4) and C6326 "Potential comparison of a constant with another constant" (enabled by /analyze). They're potentially useful, although they're slightly annoying to library devs who know what they're doing. In the latest version of the compiler, C4127 is suppressed when the compiler sees simple tests like "if (name_of_thing)", so extracting comparison expressions into named constants is a workaround. At the same time, using std::integral_constant avoids C6326, which doesn't look at template arguments. test/std/containers/sequences/vector.bool/emplace.pass.cpp Replace 1 == 1 with true, which is the same as far as the library is concerned. Fixes D28837. llvm-svn: 292432
47 lines
1.0 KiB
C++
47 lines
1.0 KiB
C++
//===----------------------------------------------------------------------===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
// Source Licenses. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// test bool any() const;
|
|
|
|
#include <bitset>
|
|
#include <type_traits>
|
|
#include <cassert>
|
|
|
|
template <std::size_t N>
|
|
void test_any()
|
|
{
|
|
std::bitset<N> v;
|
|
v.reset();
|
|
assert(v.any() == false);
|
|
v.set();
|
|
assert(v.any() == (N != 0));
|
|
const bool greater_than_1 = std::integral_constant<bool, (N > 1)>::value; // avoid compiler warnings
|
|
if (greater_than_1)
|
|
{
|
|
v[N/2] = false;
|
|
assert(v.any() == true);
|
|
v.reset();
|
|
v[N/2] = true;
|
|
assert(v.any() == true);
|
|
}
|
|
}
|
|
|
|
int main()
|
|
{
|
|
test_any<0>();
|
|
test_any<1>();
|
|
test_any<31>();
|
|
test_any<32>();
|
|
test_any<33>();
|
|
test_any<63>();
|
|
test_any<64>();
|
|
test_any<65>();
|
|
test_any<1000>();
|
|
}
|