Skip to content
Snippets Groups Projects
Commit 6bc0614d authored by Brad Kittenbrink's avatar Brad Kittenbrink
Browse files

DRTVWR-575 xcode-14.1 compatibility fix. add more overloads for stricter size_t conversions

parent 6ec534e8
No related branches found
No related tags found
No related merge requests found
...@@ -208,6 +208,7 @@ class LL_COMMON_API LLSD ...@@ -208,6 +208,7 @@ class LL_COMMON_API LLSD
LLSD& operator=(Boolean v) { assign(v); return *this; } LLSD& operator=(Boolean v) { assign(v); return *this; }
LLSD& operator=(Integer v) { assign(v); return *this; } LLSD& operator=(Integer v) { assign(v); return *this; }
LLSD& operator=(size_t v) { assign(Integer(v)); return *this; }
LLSD& operator=(Real v) { assign(v); return *this; } LLSD& operator=(Real v) { assign(v); return *this; }
LLSD& operator=(const String& v) { assign(v); return *this; } LLSD& operator=(const String& v) { assign(v); return *this; }
LLSD& operator=(const UUID& v) { assign(v); return *this; } LLSD& operator=(const UUID& v) { assign(v); return *this; }
......
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