Skip to content

Commit 62e87d2

Browse files
committed
Bump c++11 -> c++14
Eigen 5.x (current Homebrew formula) requires C++14 features (std::enable_if_t, std::integer_sequence, etc.), causing build failures with the previous C++11 default.
1 parent 2707095 commit 62e87d2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

wscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def options(ctx):
4747
help='debug, release or default')
4848

4949
ctx.add_option('--std', action='store',
50-
dest='STD', default='c++11',
50+
dest='STD', default='c++14',
5151
help='C++ standard to compile for [c++11 c++14 c++17 ...]')
5252

5353
ctx.add_option('--arch', action='store',

0 commit comments

Comments
 (0)