From b8d0976c69e87c968ca56f26a8b009b92618b48c Mon Sep 17 00:00:00 2001 From: Sean Kelly Date: Fri, 8 Oct 2010 17:31:38 +0000 Subject: [PATCH] Fixed unittest hang. I thought I'd already checked in this change, but I guess not. --- std/concurrency.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/std/concurrency.d b/std/concurrency.d index 0f6c5f87c..fc051a230 100644 --- a/std/concurrency.d +++ b/std/concurrency.d @@ -720,7 +720,7 @@ private } else static if( Args.length == 1 && isTuple!(Args) ) { - if( data.convertsTo!(Wrap) ) + if( data.convertsTo!(Args) ) { static if( is( ReturnType!(t) == bool ) ) {