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:
authorSergey Yershov <syershov@maps.me>2017-02-10 14:15:07 +0300
committerSergey Yershov <syershov@maps.me>2017-02-10 14:17:10 +0300
commit31951c12f41e31907ed18bd8afd057a7690a8b08 (patch)
tree54921f85c8a820d7cc82e9aa55a4fd909f5a148d /base
parent5a661b675bf862d2cdf352db2f98a2ad5697656a (diff)
Fix build on macOS
Diffstat (limited to 'base')
-rw-r--r--base/small_set.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/small_set.hpp b/base/small_set.hpp
index c99fade4e6..246872d394 100644
--- a/base/small_set.hpp
+++ b/base/small_set.hpp
@@ -30,7 +30,7 @@ public:
using difference_type = uint64_t;
using value_type = uint64_t;
using pointer = void;
- using reference = void;
+ using reference = uint64_t;
using iterator_category = std::forward_iterator_tag;
Iterator(uint64_t const * blocks, uint64_t current_block_index)