summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
Diffstat (limited to 'indra/llcommon')
-rw-r--r--indra/llcommon/llhandle.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llhandle.h b/indra/llcommon/llhandle.h
index 8e073aab27..feb5f41848 100644
--- a/indra/llcommon/llhandle.h
+++ b/indra/llcommon/llhandle.h
@@ -271,7 +271,7 @@ public:
* Converts the LLCheckedHandle to a bool. Allows for if (chkdHandle) {}
* Does not throw.
*/
- explicit operator bool() const
+ /*explicit*/ operator bool() const // explicit conversion operator not available with Linux compiler
{
return (mHandle.get() != NULL);
}