From e48d97ed69cd86b049924980be2f05d328f59498 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20Dom=C3=ADnguez?= Date: Sat, 31 Aug 2024 17:30:55 +0200 Subject: [PATCH] Turn PinMappings class into a type alias --- libs/ardour/ardour/plugin_insert.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/libs/ardour/ardour/plugin_insert.h b/libs/ardour/ardour/plugin_insert.h index b0d096a296..1b3517123e 100644 --- a/libs/ardour/ardour/plugin_insert.h +++ b/libs/ardour/ardour/plugin_insert.h @@ -333,11 +333,10 @@ private: * which is known to be troublesome with Visual C++ :- * https://www.boost.org/doc/libs/1_65_0/libs/type_traits/doc/html/boost_typetraits/reference/aligned_storage.html */ - class PinMappings : public std::map + typedef std::map PinMappings; #else - class PinMappings : public std::map , PBD::StackAllocator, 4> > + typedef std::map , PBD::StackAllocator, 4> > PinMappings; #endif - {}; PinMappings _in_map; PinMappings _out_map;