From cd1a6dc0bda3bcb7e487d714cf2031a5f90ce821 Mon Sep 17 00:00:00 2001 From: Yinxiu Jia <48558845+kenneth-jia@users.noreply.github.com> Date: Wed, 15 Jun 2022 09:54:38 +0800 Subject: [PATCH] No sign conversion check (to avoid build failures from old boost release) --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 329064dbe..bd4e4c5eb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ if (NOT parent_directory) set(cppkafka_master_project ON) # Use Strict Options if ((CMAKE_CXX_COMPILER_ID STREQUAL "Clang") OR (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")) - add_compile_options("-Wall" "-Werror" "-Wextra" "-Wshadow" "-Wno-unused-result" "-Wsign-conversion") + add_compile_options("-Wall" "-Werror" "-Wextra" "-Wshadow" "-Wno-unused-result") elseif (CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") add_definitions(-D_CRT_SECURE_NO_WARNINGS) endif ()