forked from boostorg/smart_ptr
Made value_ mutable to enable operator long() const to compile
[SVN r23208]
This commit is contained in:
@ -51,7 +51,7 @@ private:
|
|||||||
atomic_count(atomic_count const &);
|
atomic_count(atomic_count const &);
|
||||||
atomic_count & operator=(atomic_count const &);
|
atomic_count & operator=(atomic_count const &);
|
||||||
|
|
||||||
_Atomic_word value_;
|
mutable _Atomic_word value_;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace detail
|
} // namespace detail
|
||||||
|
Reference in New Issue
Block a user