diff options
-rw-r--r-- | raul/TimeStamp.hpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/raul/TimeStamp.hpp b/raul/TimeStamp.hpp index 7ce9d95..db17004 100644 --- a/raul/TimeStamp.hpp +++ b/raul/TimeStamp.hpp @@ -106,10 +106,9 @@ public: } inline TimeStamp& operator=(const TimeStamp& rhs) { - //assert(_unit == rhs._unit); _ticks = rhs._ticks; _subticks = rhs._subticks; - //_unit = rhs._unit; + _unit = rhs._unit; return *this; } |