From 55e1f6a16c66923936063497b894e20834f8a8fe Mon Sep 17 00:00:00 2001 From: altalk23 <45172705+altalk23@users.noreply.github.com> Date: Wed, 27 Mar 2024 22:18:46 +0300 Subject: [PATCH] Operation Big Sister - Finalize TodoReturn changes --- loader/include/Geode/Enums.hpp | 2 +- loader/include/Geode/c++stl/msvc/xhash.hpp | 13 ++++++++++++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/loader/include/Geode/Enums.hpp b/loader/include/Geode/Enums.hpp index 5a60b501..2d27f5be 100644 --- a/loader/include/Geode/Enums.hpp +++ b/loader/include/Geode/Enums.hpp @@ -1,6 +1,6 @@ #pragma once -struct TodoReturnPlaceholder {}; +struct TodoReturnPlaceholder; using TodoReturn = TodoReturnPlaceholder; diff --git a/loader/include/Geode/c++stl/msvc/xhash.hpp b/loader/include/Geode/c++stl/msvc/xhash.hpp index 1da9678c..022cb762 100644 --- a/loader/include/Geode/c++stl/msvc/xhash.hpp +++ b/loader/include/Geode/c++stl/msvc/xhash.hpp @@ -37,6 +37,17 @@ _STL_DISABLE_CLANG_WARNINGS namespace geode::stl { +template +struct _ListIterTypes { + using value_type = _Value_type; + using size_type = _Size_type; + using difference_type = _Difference_type; + using pointer = _Pointer; + using const_pointer = _Const_pointer; + using _Nodeptr = _Nodeptr_type; +}; + using _STD _Fake_alloc; // The following types are not accessible from std::list. @@ -51,7 +62,7 @@ struct _ListImpl { using _Nodeptr = typename _Alnode_traits::pointer; using _Val_types = _STD conditional_t<_STD _Is_simple_alloc_v<_Alnode>, _STD _List_simple_types<_Ty>, - _STD _List_iter_types<_Ty, typename _Alty_traits::size_type, typename _Alty_traits::difference_type, + _ListIterTypes<_Ty, typename _Alty_traits::size_type, typename _Alty_traits::difference_type, typename _Alty_traits::pointer, typename _Alty_traits::const_pointer, _Nodeptr>>; using _Scary_val = _STD _List_val<_Val_types>;