From 571e3750c699fc8f4f1d8f9fc891f1be6b5fa213 Mon Sep 17 00:00:00 2001 From: Colin Patrick McCabe Date: Tue, 2 Nov 2010 13:00:58 -0700 Subject: [PATCH] SafeTimer: clean up copy constructor declaration Signed-off-by: Colin McCabe --- src/common/Timer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }; -- 2.47.3