diff --git a/Source/Engine/Core/Collections/HashSet.h b/Source/Engine/Core/Collections/HashSet.h index eb10a5015..22bdfe65a 100644 --- a/Source/Engine/Core/Collections/HashSet.h +++ b/Source/Engine/Core/Collections/HashSet.h @@ -480,7 +480,7 @@ public: bool Remove(const ItemType& item) { if (IsEmpty()) - return true; + return false; FindPositionResult pos; FindPosition(item, pos); if (pos.ObjectIndex != -1)