From: Colin Patrick McCabe Date: Tue, 2 Nov 2010 20:00:58 +0000 (-0700) Subject: SafeTimer: clean up copy constructor declaration X-Git-Tag: v0.24~229^2~9 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=571e3750c699fc8f4f1d8f9fc891f1be6b5fa213;p=ceph.git SafeTimer: clean up copy constructor declaration Signed-off-by: Colin McCabe --- diff --git a/src/common/Timer.h b/src/common/Timer.h index f56345252a2d..2efd3e048976 100644 --- a/src/common/Timer.h +++ b/src/common/Timer.h @@ -141,8 +141,8 @@ public: private: // This class isn't supposed to be copied - SafeTimer(const Timer &rhs); - SafeTimer& operator=(const Timer &rhs); + SafeTimer(const SafeTimer &rhs); + SafeTimer& operator=(const SafeTimer &rhs); Timer t; };