From f86aca799cc8fc3fe52a6f5f6f50dedb880ba26f Mon Sep 17 00:00:00 2001 From: Dominik Picheta Date: Tue, 16 May 2017 20:13:36 +0100 Subject: [PATCH] Remove processing hints for async procs. --- lib/pure/asyncmacro.nim | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/pure/asyncmacro.nim b/lib/pure/asyncmacro.nim index fccda3bfb0..9a9bef8c01 100644 --- a/lib/pure/asyncmacro.nim +++ b/lib/pure/asyncmacro.nim @@ -306,7 +306,6 @@ proc asyncSingleProc(prc: NimNode): NimNode {.compileTime.} = " proc/method definition or lambda node expected.") let prcName = prc.name.getName - hint("Processing " & prcName & " as an async proc.") let returnType = prc.params[0] var baseType: NimNode @@ -527,8 +526,6 @@ macro multisync*(prc: untyped): untyped = ## ## The generated async procedures use the ``async`` macro, whereas the ## generated synchronous procedures simply strip off the ``await`` calls. - hint("Processing " & prc[0].getName & " as a multisync proc.") - let (sync, asyncPrc) = splitProc(prc) result = newStmtList() result.add(asyncSingleProc(asyncPrc))