Skip to content
Snippets Groups Projects
Commit d0e90ea0 authored by Rider Linden's avatar Rider Linden
Browse files

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

parent 38f40197
No related branches found
No related tags found
No related merge requests found
...@@ -260,7 +260,10 @@ class LLCoros::Future ...@@ -260,7 +260,10 @@ class LLCoros::Future
return boost::dcoroutines::make_callback(mFuture); return boost::dcoroutines::make_callback(mFuture);
} }
explicit operator bool() const #ifndef LL_LINUX
explicit
#endif
operator bool() const
{ {
return bool(mFuture); return bool(mFuture);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment