Skip to content
Snippets Groups Projects
Commit 1a9e2de2 authored by jstark's avatar jstark
Browse files

Changed C++ version in Makefiles from 11 to 14 to avoid compilation error...

Changed C++ version in Makefiles from 11 to 14 to avoid compilation error after recent changes to map_vector_sparse.hpp.
parent 461ff74e
No related branches found
No related tags found
1 merge request!3Master
Pipeline #2378 passed
......@@ -7,7 +7,7 @@ LDIR =
OBJ = main.o
%.o: %.cpp
$(CC) -O3 -c --std=c++11 -o $@ $< $(INCLUDE_PATH)
$(CC) -O3 -c --std=c++14 -o $@ $< $(INCLUDE_PATH)
example_sussman_circle: $(OBJ)
$(CC) -o $@ $^ $(CFLAGS) $(LIBS_PATH) $(LIBS)
......
......@@ -7,7 +7,7 @@ LDIR =
OBJ = main.o
%.o: %.cpp
$(CC) -O3 -c --std=c++11 -o $@ $< $(INCLUDE_PATH)
$(CC) -O3 -c --std=c++14 -o $@ $< $(INCLUDE_PATH)
example_sussman_images: $(OBJ)
$(CC) -o $@ $^ $(CFLAGS) $(LIBS_PATH) $(LIBS)
......
......@@ -7,7 +7,7 @@ LDIR =
OBJ = main.o
%.o: %.cpp
$(CC) -O3 -c --std=c++11 -o $@ $< $(INCLUDE_PATH)
$(CC) -O3 -c --std=c++14 -o $@ $< $(INCLUDE_PATH)
example_sussman_images: $(OBJ)
$(CC) -o $@ $^ $(CFLAGS) $(LIBS_PATH) $(LIBS)
......
......@@ -7,7 +7,7 @@ LDIR =
OBJ = main.o
%.o: %.cpp
$(CC) -O3 -c --std=c++11 -o $@ $< $(INCLUDE_PATH)
$(CC) -O3 -c --std=c++14 -o $@ $< $(INCLUDE_PATH)
example_sussman_sphere: $(OBJ)
$(CC) -o $@ $^ $(CFLAGS) $(LIBS_PATH) $(LIBS)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment