From f5c581d89c7de5693fe2fdd5466e002be9793365 Mon Sep 17 00:00:00 2001 From: Kbz-8 Date: Sun, 7 Jan 2024 01:45:12 +0100 Subject: [PATCH] figin another MacOS compilation error --- src/core/UUID.h | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/src/core/UUID.h b/src/core/UUID.h index 49091df..aab3dc5 100644 --- a/src/core/UUID.h +++ b/src/core/UUID.h @@ -6,7 +6,7 @@ /* By: maldavid +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2024/01/06 11:13:23 by maldavid #+# #+# */ -/* Updated: 2024/01/07 01:39:35 by maldavid ### ########.fr */ +/* Updated: 2024/01/07 01:44:21 by maldavid ### ########.fr */ /* */ /* ************************************************************************** */ @@ -14,7 +14,6 @@ #define __MLX_UUID__ #include -#include namespace mlx { @@ -31,19 +30,4 @@ namespace mlx }; } -namespace std -{ - template struct hash; - - template<> - struct hash - { - std::size_t operator()(const mlx::UUID& uuid) const - { - return static_cast(uuid); - } - }; - -} - #endif