Fix `wait(future)` declaration signature. (#537)
This commit is contained in:
parent
0f0ed1d654
commit
bb96f02ae8
|
@ -1866,7 +1866,7 @@ proc wait*(fut: InternalRaisesFuture, timeout = InfiniteDuration): auto =
|
||||||
|
|
||||||
waitImpl(fut, retFuture, timeout)
|
waitImpl(fut, retFuture, timeout)
|
||||||
|
|
||||||
proc wait*(fut: InternalRaisesFuture, deadline: InternalRaisesFuture): auto =
|
proc wait*(fut: InternalRaisesFuture, deadline: SomeFuture): auto =
|
||||||
type
|
type
|
||||||
T = type(fut).T
|
T = type(fut).T
|
||||||
E = type(fut).E
|
E = type(fut).E
|
||||||
|
|
Loading…
Reference in New Issue