summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
authorTimothee Cour <timothee.cour2@gmail.com>2020-06-16 23:10:34 -0700
committerGitHub <noreply@github.com>2020-06-17 08:10:34 +0200
commit861953429362d72a76fe3768a25db3f8a1cf70ee (patch)
tree1ec1d83ef3ae98efcbb695f615109b355c0f6db4 /lib
parent15a45e8e73a4e8eb645e4c3c3a5080465347cc60 (diff)
downloadNim-861953429362d72a76fe3768a25db3f8a1cf70ee.tar.gz
remove compilerproc from `newIdentNode` (#14692)
Diffstat (limited to 'lib')
-rw-r--r--lib/core/macros.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/core/macros.nim b/lib/core/macros.nim
index aa4269101..f3bca3af8 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.