diff --git a/d1/d83/classuint256__t.html b/d1/d83/classuint256__t.html index efd2717d2..dee6cff20 100644 --- a/d1/d83/classuint256__t.html +++ b/d1/d83/classuint256__t.html @@ -381,7 +381,7 @@ template<typename T, typename = typename std::enable_if<

Definition at line 75 of file uint256_t.hpp.

-
75: s(low), f(0) {}
+
75: f(0), s(low) {}
diff --git a/d2/dc8/classdata__structures_1_1_stack.html b/d2/dc8/classdata__structures_1_1_stack.html index 90705dcfa..08a78af35 100644 --- a/d2/dc8/classdata__structures_1_1_stack.html +++ b/d2/dc8/classdata__structures_1_1_stack.html @@ -199,7 +199,7 @@ template<typename T>

Definition at line 28 of file stack_using_array.cpp.

-
28: stackSize(size), stackIndex(-1), stack(new T[size]) {}
+
28: stack(new T[size]), stackSize(size), stackIndex(-1) {}
Class representation of a stack.
std::unique_ptr< T[]> stack
Smart pointer to the stack array.
int stackIndex
Index pointing to the top element of the stack.
diff --git a/d8/d96/stack__using__array_8cpp_source.html b/d8/d96/stack__using__array_8cpp_source.html index aaaba6c73..3f9f6f168 100644 --- a/d8/d96/stack__using__array_8cpp_source.html +++ b/d8/d96/stack__using__array_8cpp_source.html @@ -131,7 +131,7 @@ $(function(){initNavTree('d8/d96/stack__using__array_8cpp_source.html','../../',
21
22 public:
-
28 Stack(int size) : stackSize(size), stackIndex(-1), stack(new T[size]) {}
+
28 Stack(int size) : stack(new T[size]), stackSize(size), stackIndex(-1) {}
29
35 bool full() const { return stackIndex == stackSize - 1; }
36
diff --git a/da/da3/uint256__t_8hpp_source.html b/da/da3/uint256__t_8hpp_source.html index 3ece79758..d2143ed81 100644 --- a/da/da3/uint256__t_8hpp_source.html +++ b/da/da3/uint256__t_8hpp_source.html @@ -169,7 +169,7 @@ $(function(){initNavTree('da/da3/uint256__t_8hpp_source.html','../../',''); });
67
73 template <typename T, typename = typename std::enable_if<
74 std::is_integral<T>::value, T>::type>
-
75 explicit uint256_t(T low) : s(low), f(0) {}
+
75 explicit uint256_t(T low) : f(0), s(low) {}
76
81 explicit uint256_t(const std::string &str) {
diff --git a/db/dbc/tree__234_8cpp_source.html b/db/dbc/tree__234_8cpp_source.html index 85b71062e..63ded1e5c 100644 --- a/db/dbc/tree__234_8cpp_source.html +++ b/db/dbc/tree__234_8cpp_source.html @@ -132,9 +132,9 @@ $(function(){initNavTree('db/dbc/tree__234_8cpp_source.html','../../',''); });
36 public:
41 explicit Node(int64_t item)
-
42 : count(1),
-
43 items({{item, 0, 0}}),
-
44 children({{nullptr, nullptr, nullptr, nullptr}}) {}
+
42 : items({{item, 0, 0}}),
+
43 children({{nullptr, nullptr, nullptr, nullptr}}),
+
44 count(1) {}
45
50 int8_t GetCount() { return count; }
diff --git a/dd/d40/classdata__structures_1_1tree__234_1_1_node.html b/dd/d40/classdata__structures_1_1tree__234_1_1_node.html index 5572959f1..0e2b67265 100644 --- a/dd/d40/classdata__structures_1_1tree__234_1_1_node.html +++ b/dd/d40/classdata__structures_1_1tree__234_1_1_node.html @@ -222,9 +222,9 @@ Private Attributes

Definition at line 41 of file tree_234.cpp.

-
42 : count(1),
-
43 items({{item, 0, 0}}),
-
44 children({{nullptr, nullptr, nullptr, nullptr}}) {}
+
42 : items({{item, 0, 0}}),
+
43 children({{nullptr, nullptr, nullptr, nullptr}}),
+
44 count(1) {}
std::array< int64_t, 3 > items
store items
Definition tree_234.cpp:315
int8_t count
track the current item count
Definition tree_234.cpp:319
std::array< Node *, 4 > children
store the children pointers
Definition tree_234.cpp:317