From 1e0b2199af2b50bb946589da879a7dbacedf3edc Mon Sep 17 00:00:00 2001 From: Ahmet Inan Date: Thu, 10 Jun 2021 14:41:43 +0200 Subject: [PATCH] use C++17 for aligned new --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fd82ed9..5da88f1 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -CXXFLAGS = -std=c++11 -W -Wall -Ofast -fno-exceptions -fno-rtti -march=native -I../dsp -I../code +CXXFLAGS = -std=c++17 -W -Wall -Ofast -fno-exceptions -fno-rtti -march=native -I../dsp -I../code CXX = clang++ -stdlib=libc++ #CXX = g++