fix hashmap to list missing items when they are in the same position in the list

This commit is contained in:
William Bell
2025-11-04 18:10:19 +00:00
parent 51c6bdcea9
commit 3e3df5595e
4 changed files with 20 additions and 73 deletions

View File

@@ -16,12 +16,15 @@ class ArgonConan(ConanFile):
# Remove tool_requires, no flex from Conan
requires = [
"gmp/6.3.0",
"bdwgc/8.2.8"
"bdwgc/8.2.6"
]
default_options = {
"gmp/*:shared": False,
"bdwgc/*:shared": False
"bdwgc/*:shared": False,
"bdwgc/*:parallel_mark": False,
"bdwgc/*:threads": True,
"bdwgc/*:disable_debug": True,
}
def layout(self):