diff options
author | Andy Davidoff <disruptek@users.noreply.github.com> | 2019-11-06 03:59:23 -0500 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-11-06 09:59:23 +0100 |
commit | 61889c604a5f3185339b8e6fd84fca7b0a8df1f9 (patch) | |
tree | 30c21ad967aa2d8ab28a14ae1122bb8feaea6dc1 | |
parent | 59c212607ee1982e810464e390daee38ef678c33 (diff) | |
download | Nim-61889c604a5f3185339b8e6fd84fca7b0a8df1f9.tar.gz |
export nim.cfg parser (#12602)
-rw-r--r-- | compiler/nimconf.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/nimconf.nim b/compiler/nimconf.nim index a470179bd..7c0f6ea27 100644 --- a/compiler/nimconf.nim +++ b/compiler/nimconf.nim @@ -201,7 +201,7 @@ proc parseAssignment(L: var TLexer, tok: var TToken; else: processSwitch(s, val, passPP, info, config) -proc readConfigFile(filename: AbsoluteFile; cache: IdentCache; +proc readConfigFile*(filename: AbsoluteFile; cache: IdentCache; config: ConfigRef): bool = var L: TLexer |