summaryrefslogtreecommitdiff
path: root/otk/timerqueue.hh
diff options
context:
space:
mode:
Diffstat (limited to 'otk/timerqueue.hh')
-rw-r--r--otk/timerqueue.hh7
1 files changed, 3 insertions, 4 deletions
diff --git a/otk/timerqueue.hh b/otk/timerqueue.hh
index f9237a67..5a531ebe 100644
--- a/otk/timerqueue.hh
+++ b/otk/timerqueue.hh
@@ -1,4 +1,4 @@
-// -*- mode: C++; indent-tabs-mode: nil; -*-
+// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
#ifndef __timerqueue_hh
#define __timerqueue_hh
@@ -37,13 +37,12 @@ private:
};
struct TimerLessThan {
- bool operator()(const OBTimer* const l, const OBTimer* const r) const {
+ bool operator()(const Timer* const l, const Timer* const r) const {
return *r < *l;
}
};
-typedef _timer_queue<OBTimer*,
- std::vector<OBTimer*>, TimerLessThan> TimerQueue;
+typedef _timer_queue<Timer*, std::vector<Timer*>, TimerLessThan> TimerQueue;
}