diff options
Diffstat (limited to 'c/util.h')
-rw-r--r-- | c/util.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -72,11 +72,11 @@ struct Unique } bool Good(T u) noexcept { - return ok = v == u; + return !(ok = v == u); } bool Bad(T u) noexcept { - return ok = v != u; + return !(ok = v != u); } ~Unique() { |