diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-02-04 10:14:27 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-02-04 10:09:04 +0100 |
commit | d543d4d5388f79eee92a97b7bf4cd490d9ed29ea (patch) | |
tree | 416c7e3c33f947d9899431aa180cbe1a33d4a78e /configmgr/source | |
parent | 213d6390a2cc59d174173f4359c161625a9c4bdc (diff) |
std::set<T*> -> o3tl::sorted_vector
Change-Id: I562f8a8dc27f4aeebec6f6643b95460315edc9c2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87949
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'configmgr/source')
-rw-r--r-- | configmgr/source/components.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configmgr/source/components.hxx b/configmgr/source/components.hxx index bd4aeb5a78ac..6aec76bd1aad 100644 --- a/configmgr/source/components.hxx +++ b/configmgr/source/components.hxx @@ -27,6 +27,7 @@ #include <com/sun/star/beans/Optional.hpp> #include <com/sun/star/uno/Reference.hxx> #include <rtl/ref.hxx> +#include <o3tl/sorted_vector.hxx> #include "additions.hxx" #include "data.hxx" @@ -139,7 +140,7 @@ private: int getExtensionLayer(bool shared) const; - typedef std::set< RootAccess * > WeakRootSet; + typedef o3tl::sorted_vector< RootAccess * > WeakRootSet; typedef config_map< |