bugfix
This commit is contained in:
parent
8e57bbacf1
commit
a2e4a23b30
1 changed files with 1 additions and 1 deletions
|
|
@ -342,7 +342,7 @@ namespace lib {
|
|||
|
||||
/** allow copy, without interfering with the identity of IMPL */
|
||||
Monitor (Monitor const& ref) : IMPL(), timeout_(ref.timeout_) { }
|
||||
const Monitor& operator= (Monitor const& ref) { timeout_ = ref.timeout_; }
|
||||
const Monitor& operator= (Monitor const& ref) { timeout_ = ref.timeout_; return *this; }
|
||||
|
||||
|
||||
void acquireLock() { IMPL::acquire(); }
|
||||
|
|
|
|||
Loading…
Reference in a new issue