adding != op

This commit is contained in:
Daniel Larimer 2015-03-11 18:17:45 -04:00
parent 3b6f2978b0
commit bb7cedade5

View file

@ -50,6 +50,10 @@ namespace fc {
{
return a.value == b.value;
}
friend bool operator != ( const safe& a, const safe& b )
{
return a.value != b.value;
}
friend bool operator < ( const safe& a, const safe& b )
{
return a.value < b.value;