aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Sucan <jan@jansucan.com>2024-02-02 15:51:11 +0100
committerJán Sučan <jan@jansucan.com>2024-02-02 16:04:40 +0100
commit41bffb28038f1a88f2737c5d38f6a14c06f88ddb (patch)
tree038b8160d1e645a2d17f5589ed1c9c9ac37fecef
parenteba9c5000b1b15ba150366975fedad1613978443 (diff)
config.mk: Use C++11
Uniform initialization is supported since that version.
-rw-r--r--config.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.mk b/config.mk
index b993552..27da1f7 100644
--- a/config.mk
+++ b/config.mk
@@ -2,4 +2,4 @@ PROGRAM_NAME = diff-dd
PROGRAM_VERSION = 2.0.0
CC=g++
-CFLAGS=-Wall -fmax-errors=2
+CFLAGS=-Wall -std=c++11 -fmax-errors=2