src/core/model/event-id.cc
changeset 7169 358f71a624d8
parent 6821 203367ae7433
child 7386 2310ed220a61
--- a/src/core/model/event-id.cc	Fri May 13 14:51:51 2011 -0400
+++ b/src/core/model/event-id.cc	Fri May 13 14:52:27 2011 -0400
@@ -28,25 +28,27 @@
     m_ts (0),
     m_context (0),
     m_uid (0)
-{}
-  
+{
+}
+
 EventId::EventId (const Ptr<EventImpl> &impl, uint64_t ts, uint32_t context, uint32_t uid)
   : m_eventImpl (impl),
     m_ts (ts),
     m_context (context),
     m_uid (uid)
-{}
-void 
+{
+}
+void
 EventId::Cancel (void)
 {
   Simulator::Cancel (*this);
 }
-bool 
+bool
 EventId::IsExpired (void) const
 {
   return Simulator::IsExpired (*this);
 }
-bool 
+bool
 EventId::IsRunning (void) const
 {
   return !IsExpired ();