提交 74b2f038 编写于 作者: A Alanscut

remove annoying float-equal option

上级 fa8b4545
...@@ -47,7 +47,6 @@ if (ENABLE_CUSTOM_COMPILER_FLAGS) ...@@ -47,7 +47,6 @@ if (ENABLE_CUSTOM_COMPILER_FLAGS)
-Wmissing-variable-declarations -Wmissing-variable-declarations
-Wused-but-marked-unused -Wused-but-marked-unused
-Wswitch-enum -Wswitch-enum
-Wfloat-equal
) )
elseif("${CMAKE_C_COMPILER_ID}" STREQUAL "MSVC") elseif("${CMAKE_C_COMPILER_ID}" STREQUAL "MSVC")
# Disable warning c4001 - nonstandard extension 'single line comment' was used # Disable warning c4001 - nonstandard extension 'single line comment' was used
......
...@@ -503,7 +503,7 @@ static cJSON_bool print_number(const cJSON * const item, printbuffer * const out ...@@ -503,7 +503,7 @@ static cJSON_bool print_number(const cJSON * const item, printbuffer * const out
} }
/* This checks for NaN and Infinity */ /* This checks for NaN and Infinity */
if (!compare_double(d * 0, 0)) if ((d * 0) != 0)
{ {
length = sprintf((char*)number_buffer, "null"); length = sprintf((char*)number_buffer, "null");
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册