diff --git a/indra/llcommon/llmemory.h b/indra/llcommon/llmemory.h index d54d28ea6..4f5bb2c38 100644 --- a/indra/llcommon/llmemory.h +++ b/indra/llcommon/llmemory.h @@ -250,7 +250,7 @@ public: { bool operator()(const LLMemoryBlock* const& lhs, const LLMemoryBlock* const& rhs) { - return (U32)lhs->getBuffer() < (U32)rhs->getBuffer(); + return (size_t)lhs->getBuffer() < (size_t)rhs->getBuffer(); } }; }; @@ -526,4 +526,4 @@ void LLPrivateMemoryPoolTester::operator delete[](void* addr) #include "llsingleton.h" #include "llsafehandle.h" -#endif \ No newline at end of file +#endif