From 67d0f763d75858addd4ff22063abcd329a2384fd Mon Sep 17 00:00:00 2001 From: svost Date: Fri, 18 Mar 2016 08:58:36 +0300 Subject: [PATCH] Switch from boost types to see 6cea4ed grep -rn '::uint64_t' * && grep -rn '::int64_t' * --- src/json/json_spirit_value.h | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) 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 ) { } -- 1.7.1