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:
authorMaksim Andrianov <maksimandrianov1@gmail.com>2018-08-02 16:57:36 +0300
committerVladimir Byko-Ianko <bykoianko@gmail.com>2018-08-09 16:28:40 +0300
commit85b1a5207bbc28636ad408116afe15cf55ba264d (patch)
treeed0572fdd724c6d83c8bee66fa8bf50b0b75f54c /base
parent2fbe30b352d740b5570878f69ba1c6456335184b (diff)
Review fixes
Diffstat (limited to 'base')
-rw-r--r--base/cache.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/base/cache.hpp b/base/cache.hpp
index df7da76f13..cf40ba8131 100644
--- a/base/cache.hpp
+++ b/base/cache.hpp
@@ -20,6 +20,7 @@ namespace my
Cache() = default;
Cache(Cache && r) = default;
+ /// @param[in] logCacheSize is pow of two for number of elements in cache.
explicit Cache(uint32_t logCacheSize)
{
Init(logCacheSize);