Fix copy ctor/assignment oper warnings of -Weffc++ (#270)

This commit is contained in:
J-P Nurmi
2015-03-04 18:13:32 +01:00
parent e1ada6c643
commit 5aa8b0dcef
7 changed files with 26 additions and 0 deletions

View File

@@ -34,6 +34,9 @@ public:
}
virtual ~CUserTimer() {}
CUserTimer(const CUserTimer&) = delete;
CUserTimer& operator=(const CUserTimer&) = delete;
private:
protected:
void RunJob() override {