summaryrefslogtreecommitdiff
path: root/indra/llmessage/llmessagethrottle.h
diff options
context:
space:
mode:
Diffstat (limited to 'indra/llmessage/llmessagethrottle.h')
-rw-r--r--indra/llmessage/llmessagethrottle.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llmessage/llmessagethrottle.h b/indra/llmessage/llmessagethrottle.h
index b43b5a02ca..a3267e7d9d 100644
--- a/indra/llmessage/llmessagethrottle.h
+++ b/indra/llmessage/llmessagethrottle.h
@@ -50,8 +50,8 @@ public:
LLMessageThrottleEntry(const size_t hash, const U64 entry_time)
: mHash(hash), mEntryTime(entry_time) {}
- size_t getHash() { return mHash; }
- U64 getEntryTime() { return mEntryTime; }
+ size_t getHash() const { return mHash; }
+ U64 getEntryTime() const { return mEntryTime; }
protected:
size_t mHash;
U64 mEntryTime;