Skip to content

Commit

Permalink
Merge pull request XRPLF#329 from fyrz/master
Browse files Browse the repository at this point in the history
resolution for java build problem introduced by 5ec53f3...
  • Loading branch information
yhchiang committed Oct 2, 2014
2 parents 89833e5 + b3343fd commit 25888ae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion java/rocksjni/write_batch.cc
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,8 @@ jbyteArray Java_org_rocksdb_WriteBatchTest_getContents(
options.memtable_factory = factory;
rocksdb::MemTable* mem = new rocksdb::MemTable(
cmp, rocksdb::ImmutableCFOptions(options),
rocksdb::MemTableOptions(rocksdb::MutableCFOptions(options), options));
rocksdb::MemTableOptions(rocksdb::MutableCFOptions(options,
rocksdb::ImmutableCFOptions(options)), options));
mem->Ref();
std::string state;
rocksdb::ColumnFamilyMemTablesDefault cf_mems_default(mem, &options);
Expand Down

0 comments on commit 25888ae

Please sign in to comment.