You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just installed and tried importing macroutils. Trying to use it in godot-nim.
I ran into this error, when replacing macros with macroutils:
Error: undeclared field: 'kind' for type system.NimNode [type declared in C:\nim\lib\system.nim(2740, 3)]
If I have both of them imported I get:
Error: ambiguous call; both macros.body(someProc: NimNode) [proc declared in C:\nim\lib\core\macros.nim(1237, 6)] and macroutils.body(x: NimNode) [template declared in C:\Users\geekr\.nimble\pkgs\macroutils-1.2.0\macroutils.nim(395, 18)] match for: (NimNode)
I'm compiling with nim devel: 3b963a81
The text was updated successfully, but these errors were encountered:
Ah, it seems like the macros package has added a body proc since macroutils was last updated. You can circumvent this with import macros except body (or the same for macroutils).
Hi,
I just installed and tried importing macroutils. Trying to use it in godot-nim.
I ran into this error, when replacing macros with macroutils:
If I have both of them imported I get:
I'm compiling with nim devel: 3b963a81
The text was updated successfully, but these errors were encountered: