diff options
author | ChrisTX <xpipe@hotmail.de> | 2013-08-31 01:17:07 +0200 |
---|---|---|
committer | ChrisTX <xpipe@hotmail.de> | 2013-08-31 01:17:07 +0200 |
commit | 426752022ee4b5158b4cfc6c4531fff285029071 (patch) | |
tree | f5bcc0575d114582e17a5f44200cd0425f41d4f0 /src/timer.cpp | |
parent | 5661a9eddbb86f22e40b70bef64581e590ed34c6 (diff) |
Improve support for rarely used compilers, EKOPath in this case.
Diffstat (limited to 'src/timer.cpp')
-rw-r--r-- | src/timer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/timer.cpp b/src/timer.cpp index a1ee0b488..e04a186cf 100644 --- a/src/timer.cpp +++ b/src/timer.cpp @@ -70,7 +70,7 @@ void TimerManager::DelTimer(Timer* T) void TimerManager::AddTimer(Timer* T) { Timers.push_back(T); - sort(Timers.begin(), Timers.end(), TimerManager::TimerComparison); + std::sort(Timers.begin(), Timers.end(), TimerManager::TimerComparison); } bool TimerManager::TimerComparison( Timer *one, Timer *two) |