MAINT-5976: On Linux builds do not specify explict for bool conversion operator.
parent
38f4019752
commit
d0e90ea0cf
|
|
@ -260,7 +260,10 @@ public:
|
|||
return boost::dcoroutines::make_callback(mFuture);
|
||||
}
|
||||
|
||||
explicit operator bool() const
|
||||
#ifndef LL_LINUX
|
||||
explicit
|
||||
#endif
|
||||
operator bool() const
|
||||
{
|
||||
return bool(mFuture);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue