summary refs log tree commit diff stats
path: root/compiler/nim.cfg
diff options
context:
space:
mode:
authorTimothee Cour <timothee.cour2@gmail.com>2021-05-26 00:51:48 -0700
committerGitHub <noreply@github.com>2021-05-26 09:51:48 +0200
commit3b1aabdcffafbbf37ad02f013f754f67dfe2461c (patch)
tree9f676eb0fede03899179840249bfe58003a80e6e /compiler/nim.cfg
parent0b2bbcaa23f91b06bc06dd2cf35d4d26a6d24aa8 (diff)
downloadNim-3b1aabdcffafbbf37ad02f013f754f67dfe2461c.tar.gz
change `--hint[X] => --hint:X` in nim repo (avoids shell quoting issues) (#18085)
Diffstat (limited to 'compiler/nim.cfg')
-rw-r--r--compiler/nim.cfg4
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/nim.cfg b/compiler/nim.cfg
index 40e93d523..9ecd00b0b 100644
--- a/compiler/nim.cfg
+++ b/compiler/nim.cfg
@@ -1,6 +1,6 @@
 # Special configuration file for the Nim project
 
-hint[XDeclaredButNotUsed]:off
+hint:XDeclaredButNotUsed:off
 
 define:booting
 define:nimcore
@@ -22,5 +22,5 @@ define:useStdoutAsStdmsg
 #gc:markAndSweep
 
 @if nimHasWarningObservableStores:
-  warning[ObservableStores]: off
+  warning:ObservableStores: off
 @end