From 861953429362d72a76fe3768a25db3f8a1cf70ee Mon Sep 17 00:00:00 2001 From: Timothee Cour Date: Tue, 16 Jun 2020 23:10:34 -0700 Subject: [PATCH] remove compilerproc from `newIdentNode` (#14692) --- lib/core/macros.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/macros.nim b/lib/core/macros.nim index aa42691017..f3bca3af8c 100644 --- a/lib/core/macros.nim +++ b/lib/core/macros.nim @@ -462,7 +462,7 @@ proc newIdentNode*(i: NimIdent): NimNode {.compileTime, deprecated.} = {.pop.} -proc newIdentNode*(i: string): NimNode {.magic: "StrToIdent", noSideEffect, compilerproc.} +proc newIdentNode*(i: string): NimNode {.magic: "StrToIdent", noSideEffect.} ## Creates an identifier node from `i`. It is simply an alias for ## ``ident(string)``. Use that, it's shorter.