fix implicit bigint to bool

This commit is contained in:
Daniel Larimer 2014-06-12 17:36:58 -04:00
parent cbc43a924c
commit b02210a361

View file

@ -21,7 +21,7 @@ namespace fc {
bigint& operator = ( const bigint& a ); bigint& operator = ( const bigint& a );
bigint& operator = ( bigint&& a ); bigint& operator = ( bigint&& a );
operator bool()const; explicit operator bool()const;
bool is_negative()const; bool is_negative()const;
int64_t to_int64()const; int64_t to_int64()const;