diff options
author | fdumont <fdumont@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-11-27 10:04:19 +0000 |
---|---|---|
committer | fdumont <fdumont@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-11-27 10:04:19 +0000 |
commit | c7d2e7f799def96785e9b1fa09c6ad4c76b16a52 (patch) | |
tree | 51c9f16d83787e6b8995211fdf3bf0b6897df020 /libstdc++-v3 | |
parent | 2f78a7ce0a8d0ccd0b3142ec45da79a32fbd601d (diff) | |
download | gcc-c7d2e7f799def96785e9b1fa09c6ad4c76b16a52.tar.gz |
2010-11-27 François Dumont <francois.cppdevs@free.fr>
* include/debug/bitset (bitset<>::reference): Clean code, use normal
reference type in experimental mode.
* testsuite/23_containers/bitset/debug/invalid/1.cc: Fix for
experimental mode.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@167196 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3')
-rw-r--r-- | libstdc++-v3/ChangeLog | 7 | ||||
-rw-r--r-- | libstdc++-v3/include/debug/bitset | 27 | ||||
-rw-r--r-- | libstdc++-v3/testsuite/23_containers/bitset/debug/invalidation/1.cc | 2 |
3 files changed, 20 insertions, 16 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 6c58e1aa111..c8318c6262e 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,10 @@ +2010-11-27 François Dumont <francois.cppdevs@free.fr> + + * include/debug/bitset (bitset<>::reference): Clean code, use normal + reference type in experimental mode. + * testsuite/23_containers/bitset/debug/invalid/1.cc: Fix for + experimental mode. + 2010-11-26 François Dumont <francois.cppdevs@free.fr> * testsuite/lib/libstdc++.exp ([check_v3_target_debug_mode]): Use diff --git a/libstdc++-v3/include/debug/bitset b/libstdc++-v3/include/debug/bitset index abbd8413a2b..340bf1e9e1b 100644 --- a/libstdc++-v3/include/debug/bitset +++ b/libstdc++-v3/include/debug/bitset @@ -49,12 +49,16 @@ namespace __debug typedef _GLIBCXX_STD_D::bitset<_Nb> _Base; public: + // In C++0x we rely on normal reference type to preserve the property + // of bitset to be use as a literal. + // TODO: Find an other solution. +#ifdef __GXX_EXPERIMENTAL_CXX0X__ + typedef typename _Base::reference reference; +#else // bit reference: class reference : private _Base::reference -#ifndef __GXX_EXPERIMENTAL_CXX0X__ , public __gnu_debug::_Safe_iterator_base -#endif { typedef typename _Base::reference _Base_ref; @@ -64,27 +68,21 @@ namespace __debug reference(const _Base_ref& __base, bitset* __seq __attribute__((__unused__))) : _Base_ref(__base) -#ifndef __GXX_EXPERIMENTAL_CXX0X__ , _Safe_iterator_base(__seq, false) -#endif { } public: reference(const reference& __x) : _Base_ref(__x) -#ifndef __GXX_EXPERIMENTAL_CXX0X__ , _Safe_iterator_base(__x, false) -#endif { } reference& operator=(bool __x) { -#ifndef __GXX_EXPERIMENTAL_CXX0X__ _GLIBCXX_DEBUG_VERIFY(! this->_M_singular(), _M_message(__gnu_debug::__msg_bad_bitset_write) ._M_iterator(*this)); -#endif *static_cast<_Base_ref*>(this) = __x; return *this; } @@ -92,14 +90,12 @@ namespace __debug reference& operator=(const reference& __x) { -#ifndef __GXX_EXPERIMENTAL_CXX0X__ _GLIBCXX_DEBUG_VERIFY(! __x._M_singular(), _M_message(__gnu_debug::__msg_bad_bitset_read) ._M_iterator(__x)); _GLIBCXX_DEBUG_VERIFY(! this->_M_singular(), _M_message(__gnu_debug::__msg_bad_bitset_write) ._M_iterator(*this)); -#endif *static_cast<_Base_ref*>(this) = __x; return *this; } @@ -107,36 +103,31 @@ namespace __debug bool operator~() const { -#ifndef __GXX_EXPERIMENTAL_CXX0X__ _GLIBCXX_DEBUG_VERIFY(! this->_M_singular(), _M_message(__gnu_debug::__msg_bad_bitset_read) ._M_iterator(*this)); -#endif return ~(*static_cast<const _Base_ref*>(this)); } operator bool() const { -#ifndef __GXX_EXPERIMENTAL_CXX0X__ _GLIBCXX_DEBUG_VERIFY(! this->_M_singular(), _M_message(__gnu_debug::__msg_bad_bitset_read) ._M_iterator(*this)); -#endif return *static_cast<const _Base_ref*>(this); } reference& flip() { -#ifndef __GXX_EXPERIMENTAL_CXX0X__ _GLIBCXX_DEBUG_VERIFY(! this->_M_singular(), _M_message(__gnu_debug::__msg_bad_bitset_flip) ._M_iterator(*this)); -#endif _Base_ref::flip(); return *this; } }; +#endif // 23.3.5.1 constructors: _GLIBCXX_CONSTEXPR bitset() : _Base() { } @@ -269,7 +260,11 @@ namespace __debug operator[](size_t __pos) { __glibcxx_check_subscript(__pos); +#ifdef __GXX_EXPERIMENTAL_CXX0X__ + return _M_base()[__pos]; +#else return reference(_M_base()[__pos], this); +#endif } // _GLIBCXX_RESOLVE_LIB_DEFECTS diff --git a/libstdc++-v3/testsuite/23_containers/bitset/debug/invalidation/1.cc b/libstdc++-v3/testsuite/23_containers/bitset/debug/invalidation/1.cc index c9ba4d41f0a..5959d5fffc5 100644 --- a/libstdc++-v3/testsuite/23_containers/bitset/debug/invalidation/1.cc +++ b/libstdc++-v3/testsuite/23_containers/bitset/debug/invalidation/1.cc @@ -34,7 +34,9 @@ void test01() i = new bitset<32>::reference(bs[7]); VERIFY(*i); } +#ifndef __GXX_EXPERIMENTAL_CXX0X__ VERIFY(i->_M_singular()); +#endif delete i; } |