Skip to content

Commit f1f42fb

Browse files
authored
use C++14 to account for newer versions of Boost (#90)
1 parent 4918ca9 commit f1f42fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SConstruct

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ AddOption('--linkflags', dest='linkflags', type='string', nargs=1, action='store
1818

1919

2020
subdirs = ['source']
21-
cxx_flags = ['-std=c++11',]
21+
cxx_flags = ['-std=c++14',]
2222
try:
2323
CXX = os.environ['CXX']
2424
except KeyError:

0 commit comments

Comments
 (0)