]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/timer.cpp
Hooray unused variables. Thanks MSVC.
[user/henk/code/inspircd.git] / src / timer.cpp
index 27f2aecfdca8dd5cf8d5eb3f72b7287da90ba885..c58440c88b95b86d6f7ba81f5c8a851e641c353d 100644 (file)
@@ -3,7 +3,7 @@
  *       +------------------------------------+
  *
  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
- * See: http://www.inspircd.org/wiki/index.php/Credits
+ * See: http://wiki.inspircd.org/Credits
  *
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
@@ -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());
 }
-
-