src/simulator/time.cc
changeset 52 72a52d59ee9f
parent 39 fc6ce16b47e1
child 53 ae406f4957d5
--- a/src/simulator/time.cc	Tue Sep 05 11:23:39 2006 +0200
+++ b/src/simulator/time.cc	Tue Sep 05 12:54:53 2006 +0200
@@ -25,22 +25,22 @@
 
 Time::Time ()
 	: m_ns (0),
-	  m_is_destroy (true)
+	  m_isDestroy (true)
 {}
 Time::Time (Time const &o)
 	: m_ns (o.m_ns),
-	  m_is_destroy (o.m_is_destroy)
+	  m_isDestroy (o.m_isDestroy)
 {}
 Time &
 Time::operator = (Time const &o)
 {
 	m_ns = o.m_ns;
-	m_is_destroy = o.m_is_destroy;
+	m_isDestroy = o.m_isDestroy;
 	return *this;
 }
 Time::Time (uint64_t ns)
 	: m_ns (ns),
-	  m_is_destroy (false)
+	  m_isDestroy (false)
 {}
 
 double 
@@ -66,7 +66,7 @@
 bool
 Time::is_destroy (void) const
 {
-	return m_is_destroy;
+	return m_isDestroy;
 }
 
 Time