From 0f4af5c4f348107687a80ec48cfec7af70f81e1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20Lucas=20Golini?= Date: Sat, 25 Jan 2025 17:01:16 -0300 Subject: [PATCH] Do not use UnorderedMap in PropertySpecification, it's not stable in MSVC too. --- include/eepp/ui/css/propertyspecification.hpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/include/eepp/ui/css/propertyspecification.hpp b/include/eepp/ui/css/propertyspecification.hpp index 8169b6b2c..86ce34e5e 100644 --- a/include/eepp/ui/css/propertyspecification.hpp +++ b/include/eepp/ui/css/propertyspecification.hpp @@ -34,14 +34,8 @@ class EE_API PropertySpecification { protected: friend class PropertyDefinition; -// Investigate why robin_hood::unordered_flat_map fails with wasm build! -#if EE_PLATFORM == EE_PLATFORM_EMSCRIPTEN std::unordered_map> mProperties; std::unordered_map> mShorthands; -#else - UnorderedMap> mProperties; - UnorderedMap> mShorthands; -#endif const PropertyDefinition* addPropertyAlias( Uint32 aliasId, const PropertyDefinition* propDef ); };