We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec02576 commit 2eaf3daCopy full SHA for 2eaf3da
waf_tools/dart.py
@@ -158,8 +158,10 @@ def get_directory(filename, dirs):
158
if dart_major > 6:
159
dart_load_prefix = 'io'
160
dart_cxx_flags = ''
161
- if dart_major > 6 or (dart_major == 6 and dart_minor >= 9):
+ if dart_major == 6 and dart_minor >= 9:
162
dart_cxx_flags = '-std=c++14'
163
+ if dart_major > 6 or (dart_major == 6 and dart_minor >= 13):
164
+ dart_cxx_flags = '-std=c++17'
165
166
dart_include = []
167
dart_include.append(get_directory('dart/dart.hpp', includes_check))
0 commit comments