Skip to content

Commit cb54f0d

Browse files
committed
test cases: pass the c++11 std to boost-using code
Apple Clang defaults to C++03 or earlier, and boost 1.84 has started requiring C++11 as a minimum. Fixes test failures on the macOS builders. Unneeded for GCC systems since GCC defaults to a more recent std -- but also semantically correct there too.
1 parent b50dd06 commit cb54f0d

File tree

1 file changed

+1
-0
lines changed
  • test cases/common/219 include_type dependency

1 file changed

+1
-0
lines changed

test cases/common/219 include_type dependency/meson.build

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
project(
22
'dependency include_type',
33
['c', 'cpp'],
4+
default_options: ['cpp_std=c++11'],
45
)
56

67
dep = dependency('zlib', method: 'pkg-config', required : false)

0 commit comments

Comments
 (0)