diff options
author | jpark37 <jpark37@users.noreply.github.com> | 2020-11-13 16:11:03 -0800 |
---|---|---|
committer | jpark37 <jpark37@users.noreply.github.com> | 2020-11-13 16:13:02 -0800 |
commit | a441b13b89b528e90576ea5fe0f881998b6b11f7 (patch) | |
tree | 0db4df74e55b6f3aeead342b7b77ca2ef78674bd | |
parent | 91876b40316962620c1705ae14075ab46f8dd644 (diff) | |
download | meson-a441b13b89b528e90576ea5fe0f881998b6b11f7.zip meson-a441b13b89b528e90576ea5fe0f881998b6b11f7.tar.gz meson-a441b13b89b528e90576ea5fe0f881998b6b11f7.tar.bz2 |
Use c99 instead of c11 for buildoptions test
Older verisons of MSVC do not support C11 properly.
-rw-r--r-- | test cases/unit/59 introspect buildoptions/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/unit/59 introspect buildoptions/meson.build b/test cases/unit/59 introspect buildoptions/meson.build index 16df028..9cfdc2c 100644 --- a/test cases/unit/59 introspect buildoptions/meson.build +++ b/test cases/unit/59 introspect buildoptions/meson.build @@ -1,4 +1,4 @@ -project('introspect buildargs', ['c'], default_options: ['c_std=c11', 'cpp_std=c++14', 'buildtype=release']) +project('introspect buildargs', ['c'], default_options: ['c_std=c99', 'cpp_std=c++14', 'buildtype=release']) subA = subproject('projectA') |