Commit e5f4d2ac authored by Yoni Fogel's avatar Yoni Fogel

Addresses #287

Updated header and makefile for rangetree.h

git-svn-id: file:///svn/tokudb@1746 c7de825b-a66e-492c-adef-691d508d4ae1
parent 04307698
......@@ -35,7 +35,7 @@ clean:
cd tests;make clean
linear.o:
linear.o: rangetree.h
DBBINS = linear.o
$(LIBNAME).$(LIBEXT): $(DBBINS)
......
......@@ -23,7 +23,13 @@ typedef struct {
Will be defined during implementation,
and will actually be defined in a separate headers (one for linear version
and one for binary search tree based version). */
typedef struct {int dummy;} toku_range_tree;
struct __toku_range_tree_internal {
int dummy;
};
/* These lines will remain. */
struct __toku_range_tree_internal;
typedef struct __toku_range_tree_internal toku_range_tree;
/**
* Creates a range tree.
......
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