diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2018-03-31 10:59:39 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2018-03-31 10:59:39 -0400 |
commit | f82548b931af69a08d53818ec7a96a967c05151c (patch) | |
tree | 0fc3a30c91fd585e906d6b903c08fe996e24095a /indra/llui/llnotifications.h | |
parent | f8c76535a35aaf245e261357a59e977bac5b2501 (diff) |
MAINT-8474: Xcode 9.3 insists that comparators use const operator().
Diffstat (limited to 'indra/llui/llnotifications.h')
-rw-r--r-- | indra/llui/llnotifications.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llnotifications.h b/indra/llui/llnotifications.h index ccdfb90054..1509446920 100644 --- a/indra/llui/llnotifications.h +++ b/indra/llui/llnotifications.h @@ -703,7 +703,7 @@ namespace LLNotificationComparators { struct orderByUUID { - bool operator()(LLNotificationPtr lhs, LLNotificationPtr rhs) + bool operator()(LLNotificationPtr lhs, LLNotificationPtr rhs) const { return lhs->id() < rhs->id(); } |