diff --git a/include/fc/safe.hpp b/include/fc/safe.hpp index 538f550..44effd6 100644 --- a/include/fc/safe.hpp +++ b/include/fc/safe.hpp @@ -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;