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
diff options
context:
space:
mode:
authorBernhard Rosenkränzer <bero@lindev.ch>2017-03-17 01:30:05 +0300
committerSergey Yershov <syershov@maps.me>2017-03-17 12:21:38 +0300
commit499ad69e621c67719a8272a709d4f9b764d63e4a (patch)
treed624b7a73027132f986b354bfce4dfb255d8618f
parentc8d09d4c3088d76d2c3e80472ff64a2e9ac16b1d (diff)
Fix build
Without this modification, the build barfs on using fabs() on Linux 4.10, glibc 2.25, clang 4.0 Signed-off-by: Bernhard Rosenkränzer <bero@lindev.ch>
-rw-r--r--search/nearby_points_sweeper.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/search/nearby_points_sweeper.hpp b/search/nearby_points_sweeper.hpp
index 3bf6db6e2b..cfea4f3013 100644
--- a/search/nearby_points_sweeper.hpp
+++ b/search/nearby_points_sweeper.hpp
@@ -3,6 +3,7 @@
#include "base/assert.hpp"
#include "std/algorithm.hpp"
+#include "std/cmath.hpp"
#include "std/cstdint.hpp"
#include "std/limits.hpp"
#include "std/set.hpp"