From a8bcbf8e89460a460cfed6842b10eedcda9f50b2 Mon Sep 17 00:00:00 2001 From: Ganesh Viswanathan Date: Mon, 11 Jun 2018 11:00:51 -0500 Subject: [PATCH] Revert nep1 for c2nim --- nimgen.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nimgen.nim b/nimgen.nim index 11dd8ae..d804657 100644 --- a/nimgen.nim +++ b/nimgen.nim @@ -518,7 +518,7 @@ proc c2nim(fl, outfile: string, c2nimConfig: c2nimConfigObj) = extflags = "--header:header$#" % fname # Run c2nim on generated file - var cmd = "c2nim $# $# --out:$# $# --nep1" % [c2nimConfig.flags, extflags, outfile, cfile] + var cmd = "c2nim $# $# --out:$# $#" % [c2nimConfig.flags, extflags, outfile, cfile] when defined(windows): cmd = "cmd /c " & cmd discard execProc(cmd)