Repository: kudu Updated Branches: refs/heads/master fdde054b6 -> 7f4aaaf17
client-internal.h: add missing include This appears to be the only change necessary to build Kudu with GCC 6.2. Change-Id: Ib13af3dd236256643d59ffd9d36ec1cffb5282de Reviewed-on: http://gerrit.cloudera.org:8080/5070 Reviewed-by: Alexey Serbin <[email protected]> Tested-by: Kudu Jenkins Project: http://git-wip-us.apache.org/repos/asf/kudu/repo Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/7f4aaaf1 Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/7f4aaaf1 Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/7f4aaaf1 Branch: refs/heads/master Commit: 7f4aaaf17158aeab2b348e8a8231d66c5ecdc1b1 Parents: fdde054 Author: Dan Burkert <[email protected]> Authored: Sun Nov 13 23:27:11 2016 -0800 Committer: Dan Burkert <[email protected]> Committed: Mon Nov 14 19:54:17 2016 +0000 ---------------------------------------------------------------------- src/kudu/client/client-internal.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kudu/blob/7f4aaaf1/src/kudu/client/client-internal.h ---------------------------------------------------------------------- diff --git a/src/kudu/client/client-internal.h b/src/kudu/client/client-internal.h index 19e4088..561cc67 100644 --- a/src/kudu/client/client-internal.h +++ b/src/kudu/client/client-internal.h @@ -18,12 +18,14 @@ #define KUDU_CLIENT_CLIENT_INTERNAL_H #include <algorithm> -#include <boost/function.hpp> +#include <cmath> #include <set> #include <string> #include <unordered_set> #include <vector> +#include <boost/function.hpp> + #include "kudu/client/client.h" #include "kudu/util/atomic.h" #include "kudu/util/locks.h"
