From c2ec583c30cc95dd681dbb0c9fc5a46572913e22 Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Mon, 10 Dec 2018 15:10:55 +0100 Subject: Update makefile ad update basic_vec to allow abstract algebraic structures Unfortunately this requires C++17 as `static constexpr` members have an undefined behaviour before this version. --- vector/makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vector/makefile') diff --git a/vector/makefile b/vector/makefile index 1303aa3..31136ea 100644 --- a/vector/makefile +++ b/vector/makefile @@ -2,8 +2,8 @@ CC := gcc CARGS := -Wall -Werror -I. LDARGS := -lm -CPPC := g++ -CPPARGS := -Wall -I. +CPPC := g++-8 +CPPARGS := -Wall -I. -std=c++17 all: vector.pdf c_build/vector cpp_build/vector -- cgit v1.2.1