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

master
Brad Kittenbrink 2022-11-11 16:35:51 -08:00
parent 6ec534e8d8
commit 6bc0614d71
1 changed files with 1 additions and 0 deletions

View File

@ -208,6 +208,7 @@ public:
LLSD& operator=(Boolean 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=(const String& v) { assign(v); return *this; }
LLSD& operator=(const UUID& v) { assign(v); return *this; }