diff options
-rw-r--r-- | src/core/slot.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/slot.h b/src/core/slot.h index 56ee224..eef640a 100644 --- a/src/core/slot.h +++ b/src/core/slot.h @@ -64,7 +64,7 @@ public: * */ inline const bool has_flag(const Flags flag) { - return ( (slot_flags & flag) == flag ); + return ( (slot_flags & flag) == (unsigned int) flag ); } /** |