diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-02-15 23:42:58 +0200 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-02-15 23:42:58 +0200 |
commit | e2496eff18315a82a82e50784c5959dfb038d02f (patch) | |
tree | 772198399cc2992d0350a47e8f4e4d62c80bcc0f /indra/newview/llmaterialmgr.h | |
parent | 23a3da37a91ea80311b5820c48a12d56b989f69d (diff) |
SL-19159 Build fixes
Diffstat (limited to 'indra/newview/llmaterialmgr.h')
-rw-r--r-- | indra/newview/llmaterialmgr.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/indra/newview/llmaterialmgr.h b/indra/newview/llmaterialmgr.h index 47c322357a..00b3321737 100644 --- a/indra/newview/llmaterialmgr.h +++ b/indra/newview/llmaterialmgr.h @@ -82,7 +82,7 @@ private: void onPutResponse(bool success, const LLSD& content); void onRegionRemoved(LLViewerRegion* regionp); -private: +public: // struct for TE-specific material ID query class TEMaterialPair { @@ -93,7 +93,8 @@ private: bool operator==(const TEMaterialPair& b) const { return (materialID == b.materialID) && (te == b.te); } }; - + +private: friend inline bool operator<( const LLMaterialMgr::TEMaterialPair& lhs, const LLMaterialMgr::TEMaterialPair& rhs) |