Skip to content
Snippets Groups Projects
Commit b0f82d7c authored by Brad Payne (Vir Linden)'s avatar Brad Payne (Vir Linden)
Browse files

merge

parents 267e3171 f82548b9
No related branches found
No related tags found
No related merge requests found
...@@ -703,7 +703,7 @@ namespace LLNotificationComparators ...@@ -703,7 +703,7 @@ namespace LLNotificationComparators
{ {
struct orderByUUID struct orderByUUID
{ {
bool operator()(LLNotificationPtr lhs, LLNotificationPtr rhs) bool operator()(LLNotificationPtr lhs, LLNotificationPtr rhs) const
{ {
return lhs->id() < rhs->id(); return lhs->id() < rhs->id();
} }
......
...@@ -736,7 +736,7 @@ LLTextureView::~LLTextureView() ...@@ -736,7 +736,7 @@ LLTextureView::~LLTextureView()
typedef std::pair<F32,LLViewerFetchedTexture*> decode_pair_t; typedef std::pair<F32,LLViewerFetchedTexture*> decode_pair_t;
struct compare_decode_pair struct compare_decode_pair
{ {
bool operator()(const decode_pair_t& a, const decode_pair_t& b) bool operator()(const decode_pair_t& a, const decode_pair_t& b) const
{ {
return a.first > b.first; return a.first > b.first;
} }
......
...@@ -441,7 +441,7 @@ public: ...@@ -441,7 +441,7 @@ public:
struct CompareRegionByLastUpdate struct CompareRegionByLastUpdate
{ {
bool operator()(const LLViewerRegion* const& lhs, const LLViewerRegion* const& rhs) bool operator()(const LLViewerRegion* const& lhs, const LLViewerRegion* const& rhs) const
{ {
S32 lpa = lhs->getLastUpdate(); S32 lpa = lhs->getLastUpdate();
S32 rpa = rhs->getLastUpdate(); S32 rpa = rhs->getLastUpdate();
......
...@@ -59,7 +59,7 @@ public: ...@@ -59,7 +59,7 @@ public:
struct CompareVOCacheEntry struct CompareVOCacheEntry
{ {
bool operator()(const LLVOCacheEntry* const& lhs, const LLVOCacheEntry* const& rhs) bool operator()(const LLVOCacheEntry* const& lhs, const LLVOCacheEntry* const& rhs) const
{ {
F32 lpa = lhs->getSceneContribution(); F32 lpa = lhs->getSceneContribution();
F32 rpa = rhs->getSceneContribution(); F32 rpa = rhs->getSceneContribution();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment