diff options
Diffstat (limited to 'cppuhelper/source/servicemanager.hxx')
-rw-r--r-- | cppuhelper/source/servicemanager.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cppuhelper/source/servicemanager.hxx b/cppuhelper/source/servicemanager.hxx index af80be25a183..8ab144b115ee 100644 --- a/cppuhelper/source/servicemanager.hxx +++ b/cppuhelper/source/servicemanager.hxx @@ -32,6 +32,7 @@ #include <com/sun/star/uno/Reference.hxx> #include <compbase2.hxx> #include <rtl/ustring.hxx> +#include <boost/container/small_vector.hpp> namespace com::sun::star::lang { class XSingleComponentFactory; @@ -174,7 +175,7 @@ public: typedef std::unordered_map< OUString, - std::vector< std::shared_ptr< Implementation > > > + boost::container::small_vector< std::shared_ptr< Implementation >, 2 > > ImplementationMap; NamedImplementations namedImplementations; |