Skip to content

Commit

Permalink
use C++14 to account for newer versions of Boost (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
wtbarnes authored May 12, 2024
1 parent 4918ca9 commit f1f42fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ AddOption('--linkflags', dest='linkflags', type='string', nargs=1, action='store


subdirs = ['source']
cxx_flags = ['-std=c++11',]
cxx_flags = ['-std=c++14',]
try:
CXX = os.environ['CXX']
except KeyError:
Expand Down

0 comments on commit f1f42fb

Please sign in to comment.