Skip to content

Commit

Permalink
Merge branch 'master' into unstable
Browse files Browse the repository at this point in the history
  • Loading branch information
huangjiahua committed Jul 1, 2019
2 parents 96285de + 0ec5dc2 commit eb39ea1
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions include/rsdb/rsdb.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,10 @@ struct OpenOptions {
};

struct WriteOptions {
static constexpr int INSERT = 1;
static constexpr int REPLACE = 2;
static constexpr int STORE = 3;

int type = STORE;
enum Type {
INSERT, REPLACE, STORE
};
Type type = STORE;
};

class Iterator;
Expand Down

0 comments on commit eb39ea1

Please sign in to comment.