DRTVWR-575 xcode-14.1 compatibility fix. add more overloads for stricter size_t conversions
parent
6ec534e8d8
commit
6bc0614d71
|
|
@ -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; }
|
||||
|
|
|
|||
Loading…
Reference in New Issue