Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
code
PMem-based Data Structures
Commits
fa48efed
Commit
fa48efed
authored
Jan 19, 2021
by
Philipp Götze
Browse files
Get rid of constructor order warning
parent
0dac3668
Pipeline
#965
failed with stages
in 2 minutes and 8 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/pbptrees/PBPTree.hpp
View file @
fa48efed
...
...
@@ -186,7 +186,7 @@ class PBPTree {
/**
* Constructor for creating a new B+ tree.
*/
explicit
PBPTree
(
struct
pobj_alloc_class_desc
_alloc
)
:
depth
(
0
),
alloc_class
(
_alloc
)
{
explicit
PBPTree
(
struct
pobj_alloc_class_desc
_alloc
)
:
alloc_class
(
_alloc
)
,
depth
(
0
)
{
//PBPTree() : depth(0) {
rootNode
=
newLeafNode
();
LOG
(
"created new tree with sizeof(BranchNode) = "
<<
sizeof
(
BranchNode
)
<<
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment