1
0
Fork 0

fix windows warning (#3277)

This commit is contained in:
Wilfried Goesgens 2017-09-21 10:27:42 +02:00 committed by Frank Celler
parent e8ef1a21b6
commit a1f217b323
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ struct CompactionOptionsFIFO {
CompactionOptionsFIFO() : max_table_files_size(1 * 1024 * 1024 * 1024) {}
CompactionOptionsFIFO(uint64_t _max_table_files_size,
uint64_t _allow_compaction)
bool _allow_compaction)
: max_table_files_size(_max_table_files_size),
allow_compaction(_allow_compaction) {}
};