[index] Remove unneeded template keyword from member function call

This commit is contained in:
Adam Wulkiewicz
2014-05-23 14:18:47 +02:00
parent 3474244d0a
commit 5cc480d2c2

View File

@@ -175,7 +175,7 @@ struct create_node<
return create_static_node<
typename Allocators::node_pointer,
static_internal_node<Value, Parameters, Box, Allocators, node_s_mem_static_tag>
>::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<Value, Parameters, Box, Allocators, node_s_mem_static_tag>
>::template apply(allocators.node_allocator());
>::apply(allocators.node_allocator());
}
};