Skip to content

Commit c4d4c65

Browse files
author
Dominik Loidolt
committed
fix: update meson options to avoid deprecation warnings
- Remove quotes from boolean values in meson_options.txt - see https://mesonbuild.com/Release-notes-for-1-1-0.html#coercing-values-in-the-option-function-is-deprecated
1 parent ce122c4 commit c4d4c65

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

meson_options.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
option('extension_fixture', type: 'boolean', value: 'false', description: 'Whether to enable the fixture extension.')
2-
option('extension_memory', type: 'boolean', value: 'false', description: 'Whether to enable the memory extension.')
3-
option('support_double', type: 'boolean', value: 'false', description: 'Whether to enable double precision floating point assertions.')
1+
option('extension_fixture', type: 'boolean', value: false, description: 'Whether to enable the fixture extension.')
2+
option('extension_memory', type: 'boolean', value: false, description: 'Whether to enable the memory extension.')
3+
option('support_double', type: 'boolean', value: false, description: 'Whether to enable double precision floating point assertions.')

0 commit comments

Comments
 (0)