summaryrefslogtreecommitdiff
path: root/indra/llcommon/llstaticstringtable.h
diff options
context:
space:
mode:
Diffstat (limited to 'indra/llcommon/llstaticstringtable.h')
-rw-r--r--indra/llcommon/llstaticstringtable.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llstaticstringtable.h b/indra/llcommon/llstaticstringtable.h
index 52049b0921..d7e0e8a08d 100644
--- a/indra/llcommon/llstaticstringtable.h
+++ b/indra/llcommon/llstaticstringtable.h
@@ -69,7 +69,7 @@ struct LLStaticStringHasher
{
enum { bucket_size = 8 };
size_t operator()(const LLStaticHashedString& key_value) const { return key_value.Hash(); }
- bool operator()(const LLStaticHashedString& left, const LLStaticHashedString& right) const { return left.Hash() < right.Hash(); }
+ bool operator()(const LLStaticHashedString& left, const LLStaticHashedString& right) const { return left.Hash() < right.Hash(); }
};
template< typename MappedObject >