From 695a2a2b6e2a56779e55143befbff091a786c121 Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Tue, 15 Jul 2014 15:25:44 +0200 Subject: [PATCH] use correctly sized 64bit integer and avoid unintended (implicit up/down casts) --- DataStructures/StaticRTree.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DataStructures/StaticRTree.h b/DataStructures/StaticRTree.h index 567056b98..c3603ce21 100644 --- a/DataStructures/StaticRTree.h +++ b/DataStructures/StaticRTree.h @@ -516,7 +516,7 @@ class StaticRTree } explicit StaticRTree(TreeNode *tree_node_ptr, - const uint32_t number_of_nodes, + const uint64_t number_of_nodes, const boost::filesystem::path &leaf_file, std::shared_ptr coordinate_list) : m_search_tree(tree_node_ptr, number_of_nodes), m_leaf_node_filename(leaf_file.string()),