From: svost Date: Fri, 18 Mar 2016 05:58:36 +0000 (+0300) Subject: Switch from boost types to X-Git-Tag: nvc-v0.5.7~15^2^2~1 X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=commitdiff_plain;h=67d0f763d75858addd4ff22063abcd329a2384fd Switch from boost types to see 6cea4ed grep -rn '::uint64_t' * && grep -rn '::int64_t' * --- diff --git a/src/json/json_spirit_value.h b/src/json/json_spirit_value.h index 3b864f6..5e1ae64 100644 --- a/src/json/json_spirit_value.h +++ b/src/json/json_spirit_value.h @@ -64,8 +64,8 @@ namespace json_spirit const Array& get_array() const; bool get_bool() const; int get_int() const; - boost::int64_t get_int64() const; - boost::uint64_t get_uint64() const; + int64_t get_int64() const; + uint64_t get_uint64() const; double get_real() const; Object& get_obj(); @@ -273,7 +273,7 @@ namespace json_spirit template< class Config > Value_impl< Config >::Value_impl( uint64_t value ) : type_( int_type ) - , v_( static_cast< boost::int64_t >( value ) ) + , v_( static_cast< int64_t >( value ) ) , is_uint64_( true ) { }