Fix typo in 64-bit integer variant constructor on Linux
This commit is contained in:
parent
ff1152e55d
commit
43e02caa79
1 changed files with 1 additions and 1 deletions
|
|
@ -725,7 +725,7 @@ string format_string( const string& format, const variant_object& args )
|
||||||
#ifdef __APPLE__
|
#ifdef __APPLE__
|
||||||
#elif !defined(_MSC_VER)
|
#elif !defined(_MSC_VER)
|
||||||
void to_variant( long long int s, variant& v ) { v = variant( int64_t(s) ); }
|
void to_variant( long long int s, variant& v ) { v = variant( int64_t(s) ); }
|
||||||
void to_variant( unsigned long long int s, variant& v ) { v = variant( uint16_t(s)); }
|
void to_variant( unsigned long long int s, variant& v ) { v = variant( uint64_t(s)); }
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
variant operator == ( const variant& a, const variant& b )
|
variant operator == ( const variant& a, const variant& b )
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue