aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2020-12-14 18:19:26 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2020-12-14 18:19:26 +0300
commit316092bf365d066ccc0eeb5c81b9080c7d7f3572 (patch)
treed7058af224091069b491494e89857b6c91bb65df
parent7eef7e58c2aed8412deeb32607cf1c5149712fae (diff)
Suppress VC's 'character cannot be represented in current code page' warning (C4819)
-rw-r--r--build/root.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/root.build b/build/root.build
index 5371419..aec5e89 100644
--- a/build/root.build
+++ b/build/root.build
@@ -20,7 +20,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"