Made the pthread mutex mutable

[SVN r27740]
This commit is contained in:
Peter Dimov
2005-03-18 21:27:22 +00:00
parent 14024e2598
commit c6bf857f8b

View File

@ -37,7 +37,7 @@ private:
long use_count_; // #shared
long weak_count_; // #weak + (#shared != 0)
pthread_mutex_t m_;
mutable pthread_mutex_t m_;
public: