Skip to content

Commit 27a2a52

Browse files
authored
New boost requires C++14
1 parent 08444d6 commit 27a2a52

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/general_helmholtz/Makefile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,10 @@ include ../Makefile.in
1414
#BOOST=/home/johne/local/include
1515
#ASL=/home/johne/local/include/asl
1616

17-
1817
ifeq ($(BOOST),)
19-
CXXFLAGS = -c $(CFLAGS) -std=c++0x -fPIC
18+
CXXFLAGS = -c $(CFLAGS) -std=c++14 -fPIC # Change to C++14
2019
else
21-
CXXFLAGS = -c $(CFLAGS) -std=c++0x -fPIC -I$(BOOST)
20+
CXXFLAGS = -c $(CFLAGS) -std=c++14 -fPIC -I$(BOOST) # Change to C++14
2221
endif
2322

2423
OBJECTS = read_params.o phi.o props.o sat.o delta.o state.o props_hp.o \

0 commit comments

Comments
 (0)