From 0be5d2b2f6366b295a47a3b9d4e87091b6fd446b Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sat, 3 Jan 2015 21:24:08 +0000 Subject: boost::unordered_map->std::unordered_map Change-Id: I82f668ef72e916d2ff11df5cda2a02653999f66f --- sccomp/source/solver/SolverComponent.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sccomp') diff --git a/sccomp/source/solver/SolverComponent.hxx b/sccomp/source/solver/SolverComponent.hxx index 2f4a199c8ceb..7d3c1b122b7c 100644 --- a/sccomp/source/solver/SolverComponent.hxx +++ b/sccomp/source/solver/SolverComponent.hxx @@ -30,7 +30,7 @@ #include #include -#include +#include class ResMgr; @@ -52,7 +52,7 @@ struct ScSolverCellEqual bool operator()( const css::table::CellAddress& rAddr1, const css::table::CellAddress& rAddr2 ) const; }; -typedef boost::unordered_map< css::table::CellAddress, std::vector, ScSolverCellHash, ScSolverCellEqual > ScSolverCellHashMap; +typedef std::unordered_map< css::table::CellAddress, std::vector, ScSolverCellHash, ScSolverCellEqual > ScSolverCellHashMap; typedef cppu::WeakImplHelper3< com::sun::star::sheet::XSolver, -- cgit