From 5cc480d2c297990e8f3598ea2bf6809997443b8e Mon Sep 17 00:00:00 2001 From: Adam Wulkiewicz Date: Fri, 23 May 2014 14:18:47 +0200 Subject: [PATCH] [index] Remove unneeded template keyword from member function call --- .../geometry/index/detail/rtree/node/node_s_mem_static.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/geometry/index/detail/rtree/node/node_s_mem_static.hpp b/include/boost/geometry/index/detail/rtree/node/node_s_mem_static.hpp index d5d68cbd1..5df869c95 100644 --- a/include/boost/geometry/index/detail/rtree/node/node_s_mem_static.hpp +++ b/include/boost/geometry/index/detail/rtree/node/node_s_mem_static.hpp @@ -175,7 +175,7 @@ struct create_node< return create_static_node< typename Allocators::node_pointer, static_internal_node - >::template apply(allocators.node_allocator()); + >::apply(allocators.node_allocator()); } }; @@ -191,7 +191,7 @@ struct create_node< return create_static_node< typename Allocators::node_pointer, static_leaf - >::template apply(allocators.node_allocator()); + >::apply(allocators.node_allocator()); } };