2010-08-22 02:59:46 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2010-11-16 23:09:02 +01:00
|
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
// Source Licenses. See LICENSE.TXT for details.
|
2010-08-22 02:59:46 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// test bitset<N>& reset(size_t pos);
|
|
|
|
|
|
|
|
#include <bitset>
|
|
|
|
#include <cassert>
|
|
|
|
|
2012-07-07 19:04:52 +02:00
|
|
|
#pragma clang diagnostic push
|
|
|
|
#pragma clang diagnostic ignored "-Wtautological-compare"
|
|
|
|
|
2010-08-22 02:59:46 +02:00
|
|
|
template <std::size_t N>
|
|
|
|
void test_reset_one()
|
|
|
|
{
|
|
|
|
std::bitset<N> v;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
v.set();
|
|
|
|
v.reset(50);
|
|
|
|
if (50 >= v.size())
|
|
|
|
assert(false);
|
|
|
|
for (unsigned i = 0; i < v.size(); ++i)
|
|
|
|
if (i == 50)
|
|
|
|
assert(!v[i]);
|
|
|
|
else
|
|
|
|
assert(v[i]);
|
|
|
|
}
|
|
|
|
catch (std::out_of_range&)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
test_reset_one<0>();
|
|
|
|
test_reset_one<1>();
|
|
|
|
test_reset_one<31>();
|
|
|
|
test_reset_one<32>();
|
|
|
|
test_reset_one<33>();
|
|
|
|
test_reset_one<63>();
|
|
|
|
test_reset_one<64>();
|
|
|
|
test_reset_one<65>();
|
|
|
|
test_reset_one<1000>();
|
|
|
|
}
|