mirror of
https://github.com/boostorg/concept_check.git
synced 2025-07-31 13:07:33 +02:00
Work around GCC 3.3 bug
[SVN r34134]
This commit is contained in:
@@ -126,6 +126,10 @@ namespace boost
|
||||
|
||||
BOOST_concept(Assignable,(TT))
|
||||
{
|
||||
#if BOOST_WORKAROUND(__GNUC__, <= 3)
|
||||
Assignable() { }
|
||||
#endif
|
||||
|
||||
~Assignable() {
|
||||
#if !defined(_ITERATOR_) // back_insert_iterator broken for VC++ STL
|
||||
a = a; // require assignment operator
|
||||
|
Reference in New Issue
Block a user