aboutsummaryrefslogtreecommitdiff
path: root/libstdc++/stl/tree.h
diff options
context:
space:
mode:
Diffstat (limited to 'libstdc++/stl/tree.h')
-rw-r--r--libstdc++/stl/tree.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libstdc++/stl/tree.h b/libstdc++/stl/tree.h
index b55f0c5..80e0caf 100644
--- a/libstdc++/stl/tree.h
+++ b/libstdc++/stl/tree.h
@@ -523,10 +523,10 @@ private:
public:
// allocation/deallocation
rb_tree(const Compare& comp = Compare())
- : key_compare(comp), node_count(0) { init(); }
+ : node_count(0), key_compare(comp) { init(); }
rb_tree(const rb_tree<Key, Value, KeyOfValue, Compare, Alloc>& x)
- : key_compare(x.key_compare), node_count(0) {
+ : node_count(0), key_compare(x.key_compare) {
header = get_node();
color(header) = __rb_tree_red;
if (x.root() == 0) {