From 91e55a8443895c63d3b5a427b2b8abf86064a7fe Mon Sep 17 00:00:00 2001
From: David Robillard <d@drobilla.net>
Date: Mon, 1 May 2023 13:24:23 -0400
Subject: Clean up warning suppressions

---
 meson/suppressions/meson.build | 91 ------------------------------------------
 1 file changed, 91 deletions(-)
 delete mode 100644 meson/suppressions/meson.build

(limited to 'meson/suppressions')

diff --git a/meson/suppressions/meson.build b/meson/suppressions/meson.build
deleted file mode 100644
index 24fa320..0000000
--- a/meson/suppressions/meson.build
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright 2020-2023 David Robillard <d@drobilla.net>
-# SPDX-License-Identifier: 0BSD OR ISC
-
-# Project-specific warning suppressions
-
-warning_level = get_option('warning_level')
-
-#####
-# C #
-#####
-
-if is_variable('cc')
-  c_suppressions = []
-
-  if warning_level == 'everything'
-    if cc.get_id() in ['clang', 'emscripten']
-      c_suppressions += [
-        '-Wno-bad-function-cast',
-        '-Wno-c11-extensions', # Glib
-        '-Wno-declaration-after-statement',
-        '-Wno-implicit-fallthrough', # Really for clang < 12
-        '-Wno-padded',
-      ]
-
-      if host_machine.system() == 'windows'
-        c_suppressions += [
-          '-Wno-deprecated-declarations',
-          '-Wno-nonportable-system-include-path',
-        ]
-      endif
-
-    elif cc.get_id() == 'gcc'
-      c_suppressions += [
-        '-Wno-bad-function-cast',
-        '-Wno-cast-function-type',
-        '-Wno-inline',
-        '-Wno-padded',
-        '-Wno-strict-overflow',
-        '-Wno-switch-default',
-        '-Wno-unsuffixed-float-constants',
-      ]
-
-      if host_machine.system() == 'windows'
-        c_suppressions += [
-          '-Wno-format',
-          '-Wno-suggest-attribute=const',
-          '-Wno-suggest-attribute=format',
-          '-Wno-suggest-attribute=pure',
-        ]
-      endif
-
-    elif cc.get_id() == 'msvc'
-      c_suppressions += [
-        '/wd4114', # same type qualifier used more than once
-        '/wd4191', # unsafe function conversion
-        '/wd4200', # zero-sized array in struct/union
-        '/wd4365', # signed/unsigned mismatch
-        '/wd4464', # relative include path contains ".."
-        '/wd4514', # unreferenced inline function has been removed
-        '/wd4710', # function not inlined
-        '/wd4711', # function selected for automatic inline expansion
-        '/wd4777', # format string and argument mismatch
-        '/wd4800', # implicit conversion to bool
-        '/wd4820', # padding added after construct
-        '/wd4996', # POSIX name for this item is deprecated
-        '/wd5045', # will insert Spectre mitigation for memory load
-      ]
-    endif
-  endif
-
-  if cc.get_id() == 'clang'
-    c_suppressions += [
-      '-Wno-nullability-extension',
-    ]
-  elif cc.get_id() == 'emscripten'
-    c_suppressions += [
-      '-Wno-format',
-      '-Wno-nullability-extension',
-    ]
-  elif cc.get_id() == 'msvc'
-    c_suppressions += [
-      '/experimental:external',
-      '/external:W0',
-      '/external:anglebrackets',
-
-      '/wd4706', # assignment within conditional expression
-    ]
-  endif
-
-  c_suppressions = cc.get_supported_arguments(c_suppressions)
-endif
-- 
cgit v1.2.1