diff options
author | Don Kjer <don@lindenlab.com> | 2007-07-02 17:10:30 +0000 |
---|---|---|
committer | Don Kjer <don@lindenlab.com> | 2007-07-02 17:10:30 +0000 |
commit | e5124431b54d4342d4677371fccca5bc7250c079 (patch) | |
tree | 8c9636e78e93cef6ed099d9abd72ec9ccbbf35fe /indra/lscript/lscript_library.h | |
parent | ce5e13630cd8f4174549a3ec4ae8c24eec90bb3d (diff) |
svn merge -r 64079:64548 svn+ssh://svn/svn/linden/branches/maintenance into release
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) { |