aboutsummaryrefslogtreecommitdiffstats
path: root/build/ymake_conf.py
diff options
context:
space:
mode:
authorthegeorg <thegeorg@yandex-team.com>2024-11-18 19:46:34 +0300
committerthegeorg <thegeorg@yandex-team.com>2024-11-18 20:02:45 +0300
commit6c9370843e7e74f3717a884e07d285fc54392a8d (patch)
tree96708edcb279fedbc986b57df44838fee8a64e67 /build/ymake_conf.py
parent9034652d9fcda22d641b8b030a757a3942112f5f (diff)
downloadydb-6c9370843e7e74f3717a884e07d285fc54392a8d.tar.gz
Enable -Wformat under clang-cl
commit_hash:b2cf3b80a36e4867b03a79f3e2c552f19920016f
Diffstat (limited to 'build/ymake_conf.py')
-rwxr-xr-xbuild/ymake_conf.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/build/ymake_conf.py b/build/ymake_conf.py
index 40bc8cec59..771c2b2902 100755
--- a/build/ymake_conf.py
+++ b/build/ymake_conf.py
@@ -2082,11 +2082,10 @@ class MSVCCompiler(MSVC, Compiler):
elif target.is_x86_64:
flags.append('-m64')
- c_warnings.extend((
- '-Wno-format',
+ c_warnings += [
'-Wno-parentheses',
'-Wno-unknown-warning-option',
- ))
+ ]
cxx_warnings += [
'-Wimport-preprocessor-directive-pedantic',