From b3e30e893b6acb2dfe17c1a3eec52ebb085f303d Mon Sep 17 00:00:00 2001 From: Eric Frias Date: Thu, 15 May 2014 14:14:27 -0400 Subject: [PATCH] 32/64 bit int stuff --- include/fc/io/varint.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fc/io/varint.hpp b/include/fc/io/varint.hpp index ad4ac21..3536d4e 100644 --- a/include/fc/io/varint.hpp +++ b/include/fc/io/varint.hpp @@ -33,7 +33,7 @@ struct unsigned_int { * Uses the google protobuf algorithm for seralizing signed numbers */ struct signed_int { - signed_int( int64_t v = 0 ):value(v){} + signed_int( int32_t v = 0 ):value(v){} operator int32_t()const { return value; } template signed_int& operator=( const T& v ) { value = v; return *this; }