1
0
mirror of https://github.com/ceph/ceph synced 2025-02-16 23:37:46 +00:00

Merge pull request from stiopaa1/mds_mdsrank_addOverideToThreadClass

mds/MDSRank.h: add override to virtual function

Reviewed-by: John Spray <john.spray@redhat.com>
This commit is contained in:
John Spray 2016-11-07 14:13:34 +01:00 committed by GitHub
commit 06732de7d1

View File

@ -208,7 +208,7 @@ class MDSRank {
Cond cond;
public:
explicit ProgressThread(MDSRank *mds_) : mds(mds_) {}
void * entry();
void * entry() override;
void shutdown();
void signal() {cond.Signal();}
} progress_thread;