aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Sucan <jan@jansucan.com>2024-02-02 16:00:59 +0100
committerJán Sučan <jan@jansucan.com>2024-02-02 16:04:40 +0100
commit6bef1c8b6da3404693e2aea473824a6f33cdbde6 (patch)
treee2fdec2c17f03cf2e89bc792732942801206f869
parent0a8320fdb4b7ced5cfc4944aa2dccd473150398e (diff)
config.mk: Treat compiler warnings as errors
-rw-r--r--config.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.mk b/config.mk
index 6a0699f..7526b15 100644
--- a/config.mk
+++ b/config.mk
@@ -2,4 +2,4 @@ PROGRAM_NAME = diff-dd
PROGRAM_VERSION = 2.0.0
CC=g++
-CFLAGS=-Wall -Wextra -std=c++11
+CFLAGS=-Wall -Wextra -Werror -std=c++11