From 597539ce39ab1054851f5aa96daa0fff29699e8f Mon Sep 17 00:00:00 2001 From: Jeremie Guichard Date: Thu, 23 Mar 2017 08:13:49 +0700 Subject: Fix double to int truncation in C++ code Wfloat-conversion enabled for C++ part of the code Fix warnings raised by the flag using lrint Original issue reported on the mailing list: The ascent/descent rates are sometimes not what is expected. E.g. setting the ascent rate to 10m/min results in an actual ascent rate of 9m/min. This is due to truncating the ascent rate preference, then effectively rounding up the time to reach each stop to 2s intervals. The result being that setting the ascent rate to 10m/min results in 20s to ascend 3m (9m/min), when it should be exactly 18s. Reported-by: John Smith Reported-by: Rick Walsh Signed-off-by: Jeremie Guichard --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index 3123fca5f..67691be5e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -92,6 +92,7 @@ elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU") # in currently used cmake version. if (NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS "4.9.0") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wfloat-conversion") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wfloat-conversion") endif() elseif ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Intel") -- cgit v1.2.3-70-g09d2