From 2eb031ca5cc4ee392cf5b07fc963b719be98b671 Mon Sep 17 00:00:00 2001
From: Thomas Russell Murphy <thomas.russell.murphy@case.edu>
Date: Fri, 17 Jul 2015 22:43:02 -0500
Subject: [PATCH] Set the -std to a reasonable value for g++

---
 makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/makefile b/makefile
index 78c7000..7ab8cbd 100644
--- a/makefile
+++ b/makefile
@@ -81,7 +81,7 @@ COVERAGE_DIR=cov
 CC=g++
 FLAGS=-Wall -Wextra -pedantic
 INC=-I$(INCLUDE_DIR) -I$(SOURCE_DIR) $(addprefix -I,$(EXTRA_INCLUDES))
-CFLAGS=$(FLAGS) -std=c99 -fPIC $(INC) -c
+CFLAGS=$(FLAGS) -std=c++03  -fPIC $(INC) -c
 LFLAGS=$(FLAGS)
 
 # --- BUILD CONFIGURATIONS: Feel free to get creative with these if you'd like.
-- 
GitLab