From 57d516a82b7b992798490ef72a8596e1d5844707 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Ludwig?= Date: Mon, 26 Feb 2018 19:40:13 +0100 Subject: [PATCH] fixup --- source/vibe/core/net.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/vibe/core/net.d b/source/vibe/core/net.d index d8777fb..cc842ad 100644 --- a/source/vibe/core/net.d +++ b/source/vibe/core/net.d @@ -610,7 +610,7 @@ mixin(tracer); determined or the specified timeout is reached. */ WaitForDataAsyncStatus waitForDataAsync(CALLABLE)(CALLABLE read_ready_callback, Duration timeout = Duration.max) - if (is(typeof(CALLABLE(true))) + if (is(typeof(read_ready_callback(true)))) { mixin(tracer); import vibe.core.core : setTimer;