From 31ef155bcec9ea38c414fdc0088ebe620bcd49ca Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Mon, 14 Dec 2020 19:12:44 +0300 Subject: Suppress VC's 'character cannot be represented in current code page' warning (C4819) --- build/root.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/root.build b/build/root.build index f983149..5e34597 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" -- cgit v1.1