Fix two odd assertions.

This commit is contained in:
sdong 2019-10-31 16:39:02 -07:00
parent 06c2d2ca47
commit 7fae451580

View File

@ -350,7 +350,6 @@ class PosixMmapFile : public WritableFile {
file_offset_(0),
pending_sync_(false) {
assert((page_size & (page_size - 1)) == 0);
assert(options.use_mmap_writes);
}
@ -519,7 +518,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() {