From 44b787e27a6554a3f1d72a3f3af9490f83e96a45 Mon Sep 17 00:00:00 2001 From: eidheim Date: Mon, 26 Aug 2019 14:11:26 +0200 Subject: [PATCH] Removed flag -Wsign-conversion for now due to excessive warnings from boost --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 73521ec..165f6d7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ option(BUILD_TESTING "set ON to build library tests" OFF) option(USE_OPENSSL "set OFF to build without OpenSSL" ON) if(NOT MSVC) - add_compile_options(-std=c++11 -Wall -Wextra -Wsign-conversion) + add_compile_options(-std=c++11 -Wall -Wextra) if (CMAKE_CXX_COMPILER_ID MATCHES "Clang") add_compile_options(-Wthread-safety) endif()