Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/base
diff options
context:
space:
mode:
authorvng <viktor.govako@gmail.com>2013-04-08 17:06:55 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:52:57 +0300
commit3f348ed96143165c2f12409073c28b1f8b38addf (patch)
treeec4a4ed717be5b9331e2b23582c0bd99bff7d4e6 /base
parent379bbb65fa950f0feec58d6e62a67a6363cb9dc8 (diff)
Minor include fixes.
Diffstat (limited to 'base')
-rw-r--r--base/mru_cache.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/base/mru_cache.hpp b/base/mru_cache.hpp
index 2d94d4981a..70fab40853 100644
--- a/base/mru_cache.hpp
+++ b/base/mru_cache.hpp
@@ -1,10 +1,12 @@
#pragma once
-#include "../std/unordered_map.hpp"
-#include "../std/list.hpp"
#include "assert.hpp"
#include "logging.hpp"
+#include "../std/list.hpp"
+#include "../std/map.hpp"
+
+
namespace my
{
template <typename TValue>