45713.cc: Tweak.

2012-10-11  Paolo Carlini  <paolo.carlini@oracle.com>

	* testsuite/23_containers/bitset/45713.cc: Tweak.

From-SVN: r192357
This commit is contained in:
Paolo Carlini 2012-10-11 13:23:33 +00:00
parent 970293de57
commit 56355dc970
1 changed files with 2 additions and 4 deletions

View File

@ -1,4 +1,4 @@
// Copyright (C) 2010, 2012 Free Software Foundation, Inc.
// Copyright (C) 2010-2012 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify it under the
@ -23,6 +23,4 @@
#include <bitset>
// libstdc++/45713
#if __SIZEOF_SIZE_T__ >= 4
int test[sizeof(std::bitset<0xffffffff>) != 1 ? 1 : -1];
#endif
int test[sizeof(std::bitset<__SIZE_MAX__>) != 1 ? 1 : -1];