Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
45285428
Commit
45285428
authored
Jun 23, 2014
by
John Esmet
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
FT-93 Add function prototype (missed last commit unfortunately)
parent
97db17fe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
ft/node.h
ft/node.h
+4
-1
No files found.
ft/node.h
View file @
45285428
...
...
@@ -146,9 +146,12 @@ public:
int
num_pivots
()
const
;
// return: the
sum of the keys sizes of each pivot
// return: the
total size of this data structure
size_t
total_size
()
const
;
// return: the sum of the keys sizes of each pivot (for serialization)
size_t
serialized_size
()
const
;
private:
inline
size_t
_align4
(
size_t
x
)
const
{
return
roundup_to_multiple
(
4
,
x
);
...
...
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