remove un-needed {.push hint[ConvFromXtoItselfNotNeeded]: off.} in asyncfutures, asyncmacro (#17631)

This commit is contained in:
Timothee Cour
2021-04-03 15:24:01 -07:00
committed by GitHub
parent 66890c3ad4
commit 97764c8dc9
2 changed files with 1 additions and 6 deletions

View File

@@ -363,12 +363,10 @@ proc read*[T](future: Future[T] | FutureVar[T]): T =
## this function will fail with a `ValueError` exception.
##
## If the result of the future is an error then that error will be raised.
{.push hint[ConvFromXtoItselfNotNeeded]: off.}
when future is Future[T]:
let fut = future
else:
let fut = Future[T](future)
{.pop.}
if fut.finished:
if fut.error != nil:
injectStacktrace(fut)

View File

@@ -35,14 +35,11 @@ template createCb(retFutureSym, iteratorNameSym,
if next == nil:
if not retFutureSym.finished:
let msg = "Async procedure ($1) yielded `nil`, are you await'ing a " &
"`nil` Future?"
let msg = "Async procedure ($1) yielded `nil`, are you await'ing a `nil` Future?"
raise newException(AssertionDefect, msg % strName)
else:
{.gcsafe.}:
{.push hint[ConvFromXtoItselfNotNeeded]: off.}
next.addCallback cast[proc() {.closure, gcsafe.}](identName)
{.pop.}
except:
futureVarCompletions
if retFutureSym.finished: