From 499ad69e621c67719a8272a709d4f9b764d63e4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bernhard=20Rosenkr=C3=A4nzer?= Date: Thu, 16 Mar 2017 23:30:05 +0100 Subject: [PATCH] Fix build MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- search/nearby_points_sweeper.hpp | 1 + 1 file changed, 1 insertion(+) 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"