]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/timer.cpp
Nuke trailing spaces
[user/henk/code/inspircd.git] / src / timer.cpp
index 535ed3f8bbe5bcbe69a61b5d4df620a8f251208f..ec0ddb6456c978b3e293775709e396c3148e8dfe 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
+ *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
  * See: http://www.inspircd.org/wiki/index.php/Credits
  *
  * This program is free but copyrighted software; see
@@ -11,7 +11,7 @@
  * ---------------------------------------------------
  */
 
-/* $Core: libIRCDtimer */
+/* $Core */
 
 #include "inspircd.h"
 #include "timer.h"
@@ -26,7 +26,7 @@ void TimerManager::TickTimers(time_t TIME)
        {
                std::vector<Timer *>::iterator i = Timers.begin();
                Timer *t = (*i);
-               
+
                // Probable fix: move vector manipulation to *before* we modify the vector.
                Timers.erase(i);
 
@@ -62,5 +62,3 @@ bool TimerManager::TimerComparison( Timer *one, Timer *two)
 {
        return (one->GetTimer()) < (two->GetTimer());
 }
-
-