diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2024-08-08 17:56:18 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2024-08-08 17:56:18 +0300 |
commit | 3852a414a4fa2b4006c5dca475a23add619cb2a1 (patch) | |
tree | 1a2ec81221fe67c2cc056d15eeaa122dcd093f03 | |
parent | 113e01a2148c34821ef5bb671d015443a2e29c5a (diff) |
Suppress -Wno-unused-function Clang warning on Windows
-rw-r--r-- | libbutl-odb/buildfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbutl-odb/buildfile b/libbutl-odb/buildfile index 9fff963..13e7e45 100644 --- a/libbutl-odb/buildfile +++ b/libbutl-odb/buildfile @@ -91,7 +91,7 @@ if! $sys_sqlite c.coptions += -fno-strict-aliasing if $clang_msvc - c.coptions += -Wno-deprecated-declarations + c.coptions += -Wno-deprecated-declarations -Wno-unused-function if ($clang && $c.version.major >= 15) c.coptions += -Wno-unused-but-set-variable |