summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShivesh Mandalia <mail@shivesh.org>2022-04-16 18:44:04 +0100
committerShivesh Mandalia <mail@shivesh.org>2022-04-16 18:44:04 +0100
commite226b6a74e115f2dea82800f5492a976423a74ca (patch)
treedb04763e5243e45107a9388397f27cde4912ae94
parenta68a606a075c61529344fe0ffa28104af4aeb550 (diff)
downloadbasic_makefile-e226b6a74e115f2dea82800f5492a976423a74ca.tar.gz
basic_makefile-e226b6a74e115f2dea82800f5492a976423a74ca.zip
Use C++11 by default
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4eb9b22..3e7f9db 100644
--- a/Makefile
+++ b/Makefile
@@ -16,7 +16,7 @@ WARNINGS = -fstack-protector-strong -fpie -pedantic -Wall -Wextra
# language specific options
CFLAGS = -std=c11
-CXXFLAGS = -std=c++17
+CXXFLAGS = -std=c++11
# compiler defaults
CC = gcc