From e5809ca41c81750dbf59c2b170328df892a69e26 Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Sun, 4 Oct 2020 13:40:20 +0300 Subject: Remove outparam section in Configuration parse --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meson.build') diff --git a/meson.build b/meson.build index 73963a8..d12b130 100644 --- a/meson.build +++ b/meson.build @@ -30,7 +30,7 @@ endif sourceset = import('sourceset') cxx = meson.get_compiler('cpp') -summary({'compiler': cxx.get_id()}, section: 'Compiler') +summary({'id': cxx.get_id()}, section: 'Compiler') # add some specific flags add_project_arguments(cxx.get_supported_arguments([ @@ -67,7 +67,7 @@ add_project_arguments(cxx.get_supported_arguments([ '-Wlogical-op', # logical operations being used where bitwise were probably wanted '-Wimplicit-fallthrough', '-Wduplicated-cond', # if/else chain has duplicated conditions - '-Wduplicated-brances', # if/else branches have duplicated code + '-Wduplicated-branches', # if/else branches have duplicated code # casts '-Wold-style-cast', '-Wcast-align', # potential performance problem casts -- cgit v1.2.1