diff options
Diffstat (limited to 'zencore')
| -rw-r--r-- | zencore/include/zencore/uid.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zencore/include/zencore/uid.h b/zencore/include/zencore/uid.h index d25aa8059..9659f5893 100644 --- a/zencore/include/zencore/uid.h +++ b/zencore/include/zencore/uid.h @@ -64,7 +64,7 @@ struct Oid [[nodiscard]] static Oid FromMemory(const void* Ptr); auto operator<=>(const Oid& rhs) const = default; - [[nodiscard]] inline operator bool() const { return *this == Zero; } + [[nodiscard]] inline operator bool() const { return *this != Zero; } static const Oid Zero; // Min (can be used to signify a "null" value, or for open range queries) static const Oid Max; // Max (can be used for open range queries) |