src/simulator/scheduler.h
changeset 6180 cd0d8ba00e6c
parent 5521 37c6c83d4252
--- a/src/simulator/scheduler.h	Thu Apr 08 13:28:54 2010 +0200
+++ b/src/simulator/scheduler.h	Thu Apr 08 13:39:07 2010 +0200
@@ -36,9 +36,9 @@
  * \ingroup scheduler
  * \brief Maintain the event list
  *
- * This base class specifies the interface used to maintain the 
- * event list. If you want to provide a new event list scheduler, 
- * you need to create a subclass of this base class and implement 
+ * This base class specifies the interface used to maintain the
+ * event list. If you want to provide a new event list scheduler,
+ * you need to create a subclass of this base class and implement
  * all the pure virtual methods defined here.
  *
  * The only tricky aspect of this API is the memory management of
@@ -52,15 +52,17 @@
  */
 class Scheduler : public Object
 {
- public:
+public:
   static TypeId GetTypeId (void);
 
-  struct EventKey {
+  struct EventKey
+  {
     uint64_t m_ts;
     uint32_t m_uid;
     uint32_t m_context;
   };
-  struct Event {
+  struct Event
+  {
     EventImpl *impl;
     EventKey key;
   };
@@ -106,8 +108,8 @@
     {
       return true;
     }
-  else if (a.m_ts == b.m_ts &&
-           a.m_uid < b.m_uid)
+  else if (a.m_ts == b.m_ts
+           && a.m_uid < b.m_uid)
     {
       return true;
     }
@@ -126,8 +128,8 @@
     {
       return true;
     }
-  else if (a.m_ts == b.m_ts &&
-           a.m_uid > b.m_uid)
+  else if (a.m_ts == b.m_ts
+           && a.m_uid > b.m_uid)
     {
       return true;
     }