remove non-const version of root_node added in r65337

for backward compatibility. It is not documented and not
used (in a non-const context).
This commit is contained in:
Sébastien Loriot 2011-09-08 12:02:06 +00:00
parent a38b015d15
commit a09f6640f5
1 changed files with 0 additions and 6 deletions

View File

@ -230,12 +230,6 @@ namespace CGAL {
return m_p_root_node; return m_p_root_node;
} }
Node* root_node() {
if(m_need_build)
build();
return m_p_root_node;
}
// search KD-tree // search KD-tree
const Search_tree* m_p_search_tree; const Search_tree* m_p_search_tree;
bool m_search_tree_constructed; bool m_search_tree_constructed;