From 13ec1816dc7dbe3d9bb76f0a803293a4b8946bdf Mon Sep 17 00:00:00 2001 From: Peter Nelson Date: Sun, 21 Dec 2025 15:15:41 +0000 Subject: [PATCH] Change: [Script] Include ScriptList contents in script memory allocation total --- src/script/api/script_list.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/script/api/script_list.hpp b/src/script/api/script_list.hpp index ab3e371723..fa997419dd 100644 --- a/src/script/api/script_list.hpp +++ b/src/script/api/script_list.hpp @@ -182,8 +182,8 @@ protected: } public: - using ScriptListSet = std::set>; ///< List per value - using ScriptListMap = std::map; ///< List per item + using ScriptListSet = std::set, std::less<>, ScriptStdAllocator>>; ///< List per value + using ScriptListMap = std::map, ScriptStdAllocator>>; ///< List per item ScriptListMap items; ///< The items in the list ScriptListSet values; ///< The items in the list, sorted by value