32/64 bit int stuff
This commit is contained in:
parent
7078ebf382
commit
b3e30e893b
1 changed files with 1 additions and 1 deletions
|
|
@ -33,7 +33,7 @@ struct unsigned_int {
|
||||||
* Uses the google protobuf algorithm for seralizing signed numbers
|
* Uses the google protobuf algorithm for seralizing signed numbers
|
||||||
*/
|
*/
|
||||||
struct signed_int {
|
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; }
|
operator int32_t()const { return value; }
|
||||||
template<typename T>
|
template<typename T>
|
||||||
signed_int& operator=( const T& v ) { value = v; return *this; }
|
signed_int& operator=( const T& v ) { value = v; return *this; }
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue