diff --git a/headers/Containers/Hashing.hpp b/headers/Containers/Hashing.hpp index 7af88cf..4f64711 100644 --- a/headers/Containers/Hashing.hpp +++ b/headers/Containers/Hashing.hpp @@ -15,6 +15,7 @@ namespace Tourmaline::Containers { template concept Hashable = requires(T x) { + std::equality_comparable; { std::hash{}(x) } -> std::convertible_to; }; } // namespace Tourmaline::Containers