diff options
| author | 2013-09-04 06:42:46 -0700 | |
|---|---|---|
| committer | 2013-09-04 06:42:46 -0700 | |
| commit | fb1e17c31cfb4af8f7512a0e6c7d7da81ae1be55 (patch) | |
| tree | 125d21e05be9db15499ab6f7ad95586adaae74f5 /src/timer.cpp | |
| parent | m_spanningtree Fix timestamp in AWAY (diff) | |
| parent | Improve support for rarely used compilers, EKOPath in this case. (diff) | |
Merge pull request #623 from ChrisTX/insp20+compilerfixes
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) |
