diff options
Diffstat (limited to 'indra/lscript/lscript_library.h')
-rw-r--r-- | indra/lscript/lscript_library.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/lscript/lscript_library.h b/indra/lscript/lscript_library.h index ed6e3bc1de..b5fdfc7a22 100644 --- a/indra/lscript/lscript_library.h +++ b/indra/lscript/lscript_library.h @@ -64,7 +64,7 @@ public: LLQuaternion mQuat; LLScriptLibData *mListp; - friend const bool operator<=(const LLScriptLibData &a, const LLScriptLibData &b) + friend bool operator<=(const LLScriptLibData &a, const LLScriptLibData &b) { if (a.mType == b.mType) { @@ -92,7 +92,7 @@ public: return TRUE; } - friend const bool operator==(const LLScriptLibData &a, const LLScriptLibData &b) + friend bool operator==(const LLScriptLibData &a, const LLScriptLibData &b) { if (a.mType == b.mType) { |