adding != operator to fc::microseconds

This commit is contained in:
Daniel Larimer 2014-05-22 14:24:31 -04:00
parent 5719d28a19
commit 9874fc9076

View file

@ -18,6 +18,7 @@ namespace fc {
bool operator==(const microseconds& c)const { return _count == c._count; }
bool operator!=(const microseconds& c)const { return _count != c._count; }
friend bool operator>(const microseconds& a, const microseconds& b){ return a._count > b._count; }
friend bool operator>=(const microseconds& a, const microseconds& b){ return a._count >= b._count; }
friend bool operator<(const microseconds& a, const microseconds& b){ return a._count < b._count; }