Skip to content

Commit

Permalink
Fix the fix for the fix for #647... Fixes #670.
Browse files Browse the repository at this point in the history
No idea why compilation didn't fail for me locally.
  • Loading branch information
s-ludwig committed May 20, 2014
1 parent cc3ba00 commit 4d17f1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/vibe/core/drivers/libevent2.d
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ class Libevent2Driver : EventDriver {
rescheduleTimerEvent((timeout - now).hnsecs);
}
auto entry = TimeoutEntry(timeout, id);
static if (__VERSION__ < 2065) {
static if (__VERSION__ >= 2065) {
m_timeoutHeap.insert(entry);
} else {
auto existing = m_timeoutHeap[];
Expand Down

0 comments on commit 4d17f1b

Please sign in to comment.