mirror of
https://github.com/ceph/ceph
synced 2024-12-18 01:16:55 +00:00
os/FileJournal: remove unused attribute
Clang: os/FileJournal.h:224:8: warning: private field 'is_bdev' is not used [-Wunused-private-field] Signed-off-by: John Spray <john.spray@inktank.com>
This commit is contained in:
parent
f0231ef364
commit
447335aa08
@ -221,7 +221,6 @@ private:
|
||||
|
||||
off64_t max_size;
|
||||
size_t block_size;
|
||||
bool is_bdev;
|
||||
bool directio, aio, force_aio;
|
||||
bool must_write_header;
|
||||
off64_t write_pos; // byte where the next entry to be written will go
|
||||
@ -362,7 +361,7 @@ private:
|
||||
fn(f),
|
||||
zero_buf(NULL),
|
||||
max_size(0), block_size(0),
|
||||
is_bdev(false), directio(dio), aio(ai), force_aio(faio),
|
||||
directio(dio), aio(ai), force_aio(faio),
|
||||
must_write_header(false),
|
||||
write_pos(0), read_pos(0),
|
||||
#ifdef HAVE_LIBAIO
|
||||
|
Loading…
Reference in New Issue
Block a user