summaryrefslogtreecommitdiff
path: root/boost/intrusive/bstree_algorithms.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'boost/intrusive/bstree_algorithms.hpp')
-rw-r--r--boost/intrusive/bstree_algorithms.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/boost/intrusive/bstree_algorithms.hpp b/boost/intrusive/bstree_algorithms.hpp
index 006d9c238b..9088911d4d 100644
--- a/boost/intrusive/bstree_algorithms.hpp
+++ b/boost/intrusive/bstree_algorithms.hpp
@@ -564,7 +564,7 @@ class bstree_algorithms : public bstree_algorithms_base<NodeTraits>
NodeTraits::set_parent(node, node_ptr());
NodeTraits::set_left(node, node_ptr());
NodeTraits::set_right(node, node_ptr());
- };
+ }
//! <b>Effects</b>: Returns true if node is in the same state as if called init(node)
//!
@@ -576,7 +576,7 @@ class bstree_algorithms : public bstree_algorithms_base<NodeTraits>
return !NodeTraits::get_parent(node) &&
!NodeTraits::get_left(node) &&
!NodeTraits::get_right(node) ;
- };
+ }
//! <b>Requires</b>: node must not be part of any tree.
//!