From 8a09e0dbe00aae928144225286a675c145070e92 Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Sun, 10 Sep 2017 18:49:27 +0200 Subject: [PATCH] build: disable msvc 'function not inlined' warning --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 05416ac..7fc5b8f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ if(WIN32) endif() if(MSVC) - add_compile_options(/Wall /wd4201 /wd4242 /wd4711 /wd4820) + add_compile_options(/Wall /wd4201 /wd4242 /wd4710 /wd4711 /wd4820) else() add_compile_options(-Wall) endif()