diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2020-12-14 18:25:34 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2020-12-14 18:25:34 +0300 |
commit | 876387aca1c278872a349b637d0e858dfdba2c76 (patch) | |
tree | 9a7da635bd78ccaacd3f4a7ce2ebed9406bac405 /build | |
parent | 65a8152563dde459c7788133117cd3137960ae53 (diff) |
Suppress VC's 'character cannot be represented in current code page' warning (C4819)
Diffstat (limited to 'build')
-rw-r--r-- | build/root.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/root.build b/build/root.build index 1e989e4..b183586 100644 --- a/build/root.build +++ b/build/root.build @@ -14,7 +14,7 @@ if ($cxx.target.system == 'win32-msvc') cxx.poptions += -D_CRT_SECURE_NO_WARNINGS -D_SCL_SECURE_NO_WARNINGS if ($cxx.class == 'msvc') - cxx.coptions += /wd4251 /wd4275 /wd4800 + cxx.coptions += /wd4251 /wd4275 /wd4800 /wd4819 cxx.poptions =+ "-I$out_root" "-I$src_root" |