summary refs log tree commit diff stats
path: root/lib/pure/asyncdispatch.nim
diff options
context:
space:
mode:
Diffstat (limited to 'lib/pure/asyncdispatch.nim')
-rw-r--r--lib/pure/asyncdispatch.nim9
1 files changed, 3 insertions, 6 deletions
diff --git a/lib/pure/asyncdispatch.nim b/lib/pure/asyncdispatch.nim
index 53c78d929..2d34749a9 100644
--- a/lib/pure/asyncdispatch.nim
+++ b/lib/pure/asyncdispatch.nim
@@ -355,7 +355,7 @@ proc `or`*[T, Y](fut1: Future[T], fut2: Future[Y]): Future[void] =
   fut2.callback = cb
   return retFuture
 
-proc all*[A](futs: openarray[Future[A]]): Future[seq[A]] =
+proc all*[T](futs: varargs[Future[T]]): Future[seq[T]] =
   ## Returns a future which will complete once all futures in ``futs``
   ## complete.
   ##
@@ -364,12 +364,12 @@ proc all*[A](futs: openarray[Future[A]]): Future[seq[A]] =
 
   var
     retFuture = newFuture[seq[A]]("asyncdispatch.all")
-    retValues = newSeq[A](len(futs))
+    retValues = newSeq[T](len(futs))
     completedFutures = 0
 
   for i, fut in futs:
     proc setCallback(i: int) =
-      fut.callback = proc(f: Future[A]) =
+      fut.callback = proc(f: Future[T]) =
         retValues[i] = f.read()
         inc(completedFutures)
 
@@ -380,9 +380,6 @@ proc all*[A](futs: openarray[Future[A]]): Future[seq[A]] =
 
   return retFuture
 
-proc all*[A](futs: varargs[Future[A]]): Future[seq[A]] =
-  return all(@futs)
-
 type
   PDispatcherBase = ref object of RootRef
     timers: HeapQueue[tuple[finishAt: float, fut: Future[void]]]