Minor change to Makefile to use C++17

This commit is contained in:
Stephen Seo 2021-05-10 15:21:18 +09:00
parent 203786726b
commit 60c0836553

View file

@ -1,4 +1,4 @@
COMMON_FLAGS = -Wall -Wextra -Wpedantic
COMMON_FLAGS = -Wall -Wextra -Wpedantic -std=c++17
ifdef DEBUG
CXXFLAGS = $(COMMON_FLAGS) -O0 -g
else