configmgr/source/partial.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 154b2040102d74aeb4c5d0cf07f1bdc90d265d52 Author: Noel Grandin <noelgran...@gmail.com> AuthorDate: Fri Jul 12 09:26:52 2024 +0200 Commit: Noel Grandin <noel.gran...@collabora.co.uk> CommitDate: Sat Jul 13 18:49:04 2024 +0200 boost::unordered_map to std::unordered_map in configmgr::Partial Change-Id: I030a175af694d1e0025ac2c047141913b08c3be4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/170395 Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk> Tested-by: Jenkins diff --git a/configmgr/source/partial.hxx b/configmgr/source/partial.hxx index 028fc339fae1..5edaaf0fa03a 100644 --- a/configmgr/source/partial.hxx +++ b/configmgr/source/partial.hxx @@ -22,7 +22,7 @@ #include <sal/config.h> #include <set> -#include <boost/unordered_map.hpp> +#include <unordered_map> #include <rtl/ustring.hxx> @@ -45,7 +45,7 @@ private: Partial& operator=(const Partial&) = delete; struct Node { - typedef boost::unordered_map< OUString, Node, OUStringHash > Children; + typedef std::unordered_map< OUString, Node > Children; Node(): startInclude(false) {} void clear() { startInclude=false; children.clear(); }