From e9fa920ad86ee9d270789a564726a08591408312 Mon Sep 17 00:00:00 2001 From: Martin Braun Date: Sat, 28 Sep 2019 12:09:27 +0200 Subject: soft_register: Replace boost::unordered_map with std version This is the only occurrence of boost::unordered_map in UHD. --- host/include/uhd/utils/soft_register.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'host/include') diff --git a/host/include/uhd/utils/soft_register.hpp b/host/include/uhd/utils/soft_register.hpp index cae056313..b6897551f 100644 --- a/host/include/uhd/utils/soft_register.hpp +++ b/host/include/uhd/utils/soft_register.hpp @@ -17,8 +17,8 @@ #include #include #include -#include #include +#include /*! \file soft_register.hpp * Utilities to access and index hardware registers. @@ -568,7 +568,7 @@ protected: } private: - typedef boost::unordered_map regmap_t; + typedef std::unordered_map regmap_t; typedef std::list reglist_t; const std::string _name; -- cgit v1.2.3