Fix two odd assertions.

This commit is contained in:
sdong 2019-10-31 16:39:02 -07:00
parent 24345bf016
commit 1bd63cff41

View File

@ -377,7 +377,6 @@ class PosixMmapFile : public WritableFile {
file_offset_(0),
pending_sync_(false) {
assert((page_size & (page_size - 1)) == 0);
assert(options.use_mmap_writes);
}
@ -555,7 +554,6 @@ class PosixWritableFile : public WritableFile {
pending_fsync_(false),
last_sync_size_(0),
bytes_per_sync_(options.bytes_per_sync) {
assert(!options.use_mmap_writes);
}
~PosixWritableFile() {