diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-05-31 20:22:37 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-10-23 20:26:46 +0000 |
commit | 6cd929eaa3fd2df4eaa3c9e1be747e400426e38a (patch) | |
tree | fa9b69c30b42205132ff234e352ce5c9566f0b57 /external/easylogging++/easylogging++.h | |
parent | Merge pull request #4697 (diff) | |
download | monero-6cd929eaa3fd2df4eaa3c9e1be747e400426e38a.tar.xz |
easylogging++: remove std::deque usage
It's not actually needed for this use, and saves a STL header
Diffstat (limited to 'external/easylogging++/easylogging++.h')
-rw-r--r-- | external/easylogging++/easylogging++.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/external/easylogging++/easylogging++.h b/external/easylogging++/easylogging++.h index 8e8b7094b..8bf94c546 100644 --- a/external/easylogging++/easylogging++.h +++ b/external/easylogging++/easylogging++.h @@ -386,7 +386,6 @@ ELPP_INTERNAL_DEBUGGING_OUT_INFO << ELPP_INTERNAL_DEBUGGING_MSG(internalInfoStre #include <string> #include <vector> #include <map> -#include <deque> #include <utility> #include <functional> #include <algorithm> @@ -2531,7 +2530,7 @@ class VRegistry : base::NoCopy, public base::threading::ThreadSafe { base::type::VerboseLevel m_level; base::type::EnumType* m_pFlags; std::map<std::string, base::type::VerboseLevel> m_modules; - std::deque<std::pair<std::string, Level>> m_categories; + std::vector<std::pair<std::string, Level>> m_categories; std::map<std::string, int> m_cached_allowed_categories; std::string m_categoriesString; std::string m_filenameCommonPrefix; |