From 1a85dcd890ae85ffdefcb93bb3c8705a73247b22 Mon Sep 17 00:00:00 2001 From: frohlich Date: Tue, 31 Oct 2006 05:33:48 +0000 Subject: [PATCH] Modified Files: simgear/timing/timestamp.hxx: Remove reimplemented default implementations --- simgear/timing/timestamp.hxx | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/simgear/timing/timestamp.hxx b/simgear/timing/timestamp.hxx index aa71a296..c14ab6f9 100644 --- a/simgear/timing/timestamp.hxx +++ b/simgear/timing/timestamp.hxx @@ -71,14 +71,10 @@ public: * @param m initial microseconds value */ SGTimeStamp( const long s, const long m ); - ~SGTimeStamp(); /** Update stored time to current time (seconds and microseconds) */ void stamp(); - /** Compare two time stamps for equality */ - SGTimeStamp& operator = ( const SGTimeStamp& t ); - /** * Increment the saved time by the specified number of microseconds * @param t time stamp @@ -113,17 +109,6 @@ inline SGTimeStamp::SGTimeStamp( const long s, const long u ) { usec = u; } -inline SGTimeStamp::~SGTimeStamp() { -} - -inline SGTimeStamp& SGTimeStamp::operator = (const SGTimeStamp& t) -{ - seconds = t.seconds; - usec = t.usec; - return *this; -} - - #endif // _TIMESTAMP_HXX -- 2.39.5