From: Orit Wasserman Date: Mon, 7 Dec 2015 14:05:46 +0000 (+0100) Subject: newstore: fix was hidden warning X-Git-Tag: v10.0.3~213^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=95afcad92d10985202eca64afc37594e40c6248c;p=ceph.git newstore: fix was hidden warning Signed-off-by: Orit Wasserman --- diff --git a/src/os/newstore/NewStore.h b/src/os/newstore/NewStore.h index c32e2a9d45e2..370c9b50e102 100644 --- a/src/os/newstore/NewStore.h +++ b/src/os/newstore/NewStore.h @@ -351,6 +351,7 @@ public: void _process(fsync_item *i, ThreadPool::TPHandle &handle) { store->_txc_process_fsync(i); } + using ThreadPool::WorkQueue::_process; void _clear() { fd_queue.clear(); } @@ -422,6 +423,7 @@ public: store->_wal_apply(i); i->osr->wal_apply_lock.Unlock(); } + using ThreadPool::WorkQueue::_process; void _clear() { assert(wal_queue.empty()); }