Commit bfaaba58 authored by Yoni Fogel's avatar Yoni Fogel

addresses #479, missing inline keyword

git-svn-id: file:///svn/tokudb@2697 c7de825b-a66e-492c-adef-691d508d4ae1
parent 476269ca
......@@ -76,7 +76,7 @@ Finger usefulness:
(0) CMPs do a finger_successor(elementpointer) (out found, out elementpointer)
*/
static BOOL toku__rt_overlap(toku_range_tree* tree,
static inline BOOL toku__rt_overlap(toku_range_tree* tree,
toku_range* a, toku_range* b) {
assert(tree);
assert(a);
......@@ -86,7 +86,7 @@ static BOOL toku__rt_overlap(toku_range_tree* tree,
tree->end_cmp(b->left, a->right) <= 0);
}
static BOOL toku__rt_exact(toku_range_tree* tree,
static inline BOOL toku__rt_exact(toku_range_tree* tree,
toku_range* a, toku_range* b) {
assert(tree);
assert(a);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment