MAINT-5976: On Linux builds do not specify explict for bool conversion operator.

master
Rider Linden 2016-01-04 13:38:13 -08:00
parent 38f4019752
commit d0e90ea0cf
1 changed files with 4 additions and 1 deletions

View File

@ -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);
}