From 8005c7933d1b55f247508cc199274d9ab3fa1f30 Mon Sep 17 00:00:00 2001 From: array-in-a-matrix Date: Tue, 22 Nov 2022 20:09:43 -0500 Subject: [PATCH] turn hints on --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 816ee3c..e14e67e 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ DOC_DIR := doc/ DOC_TYPE ?= doc all: - nim compile --verbosity:0 --hints:off --showAllMismatches:on --out:$(BUILD_DIR) $(SRC_DIR)main.nim + nim compile --verbosity:0 --hints:on --showAllMismatches:on --out:$(BUILD_DIR) $(SRC_DIR)main.nim doc: nim $(DOC_TYPE) --outdir:$(DOC_DIR) $(SRC_DIR)main.nim