]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
SafeTimer: clean up copy constructor declaration
authorColin Patrick McCabe <cmccabe@alumni.cmu.edu>
Tue, 2 Nov 2010 20:00:58 +0000 (13:00 -0700)
committerColin Patrick McCabe <cmccabe@alumni.cmu.edu>
Thu, 4 Nov 2010 04:40:23 +0000 (21:40 -0700)
Signed-off-by: Colin McCabe <colinm@hq.newdream.net>
src/common/Timer.h

index f56345252a2de0ced7f29923b27a40f3eb8deba9..2efd3e04897628acfb555a57df473f912682bc5e 100644 (file)
@@ -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;
 };