mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 01:14:41 +00:00
Disable unused warnings for error await template too (#14531)
This commit is contained in:
@@ -263,7 +263,7 @@ proc asyncSingleProc(prc: NimNode): NimNode {.compileTime.} =
|
||||
# based on the yglukhov's patch to chronos: https://github.com/status-im/nim-chronos/pull/47
|
||||
# however here the overloads are placed inside each expanded async
|
||||
var awaitDefinition = quote:
|
||||
template await(f: typed): untyped =
|
||||
template await(f: typed): untyped {.used.} =
|
||||
static:
|
||||
error "await expects Future[T], got " & $typeof(f)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user