From 67f59e77fa62cb793046341eb5417432011f0d1b Mon Sep 17 00:00:00 2001 From: Oleksandr Nemesh Date: Wed, 2 Oct 2024 17:50:29 +0300 Subject: [PATCH] fix copy constructor (#1102) --- loader/include/Geode/c++stl/gnustl/hashtable.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loader/include/Geode/c++stl/gnustl/hashtable.h b/loader/include/Geode/c++stl/gnustl/hashtable.h index 6e76b24e..67af8d58 100644 --- a/loader/include/Geode/c++stl/gnustl/hashtable.h +++ b/loader/include/Geode/c++stl/gnustl/hashtable.h @@ -450,7 +450,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION __node_alloc_traits::_S_propagate_on_move_assign() || __node_alloc_traits::_S_always_equal(); _M_move_assign(std::move(__ht), - integral_constant()); + std::integral_constant()); return *this; }