Merge pull request #5756 from bska/follow-cmake-bool-handling-update

Make Floating Point Existence Flag Initially Unset
This commit is contained in:
Arne Morten Kvarving
2024-11-22 11:02:59 +01:00
committed by GitHub

View File

@@ -323,7 +323,7 @@ macro (config_hook)
CXX_STANDARD 17 CXX_STANDARD 17
) )
set(HAVE_FLOATING_POINT_FROM_CHARS 0) unset(HAVE_FLOATING_POINT_FROM_CHARS)
if(have_float_from_chars) if(have_float_from_chars)
set(HAVE_FLOATING_POINT_FROM_CHARS 1) set(HAVE_FLOATING_POINT_FROM_CHARS 1)
endif() endif()