From 60c0836553a6f30b96cfe825587448fcbef27fe8 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Mon, 10 May 2021 15:21:18 +0900 Subject: [PATCH] Minor change to Makefile to use C++17 --- cpp_impl/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp_impl/Makefile b/cpp_impl/Makefile index 0e38582..3dc8b1e 100644 --- a/cpp_impl/Makefile +++ b/cpp_impl/Makefile @@ -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