Merge branch 'master' of github.com:BitShares/fc

This commit is contained in:
Daniel Larimer 2015-05-12 13:08:04 -04:00
commit e99b4ffea5

View file

@ -22,6 +22,10 @@ namespace fc {
safe(){}
safe( const safe& o ):value(o.value){}
static safe max()
{ return std::numeric_limits<T>::max(); }
static safe min()
{ return std::numeric_limits<T>::min(); }
safe& operator += ( const safe& b )
{