diff --git a/src/plugin/bridges/vst3-impls/plugin-proxy.h b/src/plugin/bridges/vst3-impls/plugin-proxy.h index 47db1806..0f4ff02d 100644 --- a/src/plugin/bridges/vst3-impls/plugin-proxy.h +++ b/src/plugin/bridges/vst3-impls/plugin-proxy.h @@ -357,7 +357,7 @@ class Vst3PluginProxyImpl : public Vst3PluginProxy { * lot of details o how this should be implemented and there's no * example implementation around. */ - std::map> targets; + std::unordered_map> targets; }; /** diff --git a/src/wine-host/bridges/vst3-impls/context-menu-proxy.h b/src/wine-host/bridges/vst3-impls/context-menu-proxy.h index e90359cc..1f36a327 100644 --- a/src/wine-host/bridges/vst3-impls/context-menu-proxy.h +++ b/src/wine-host/bridges/vst3-impls/context-menu-proxy.h @@ -55,7 +55,8 @@ class Vst3ContextMenuProxyImpl : public Vst3ContextMenuProxy { * The targets passed when to `addItem` calls made by the plugin. This way * we can call these same targets later. The key here is the item's tag. */ - std::map> + std::unordered_map> context_menu_targets; private: