Skip to content

Commit

Permalink
Fix typo: remove extra parenthesis.
Browse files Browse the repository at this point in the history
  • Loading branch information
s-trinh authored and fspindle committed Aug 11, 2023
1 parent 7b8857e commit 83555f3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions cmake/FindIsFinite.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@
include(VISPFindUtils)

check_math_expr("isfinite(1.0)" "<math.h>" HAVE_FUNC_ISFINITE)
check_math_expr("std::isfinite(1.0))" "<cmath>" HAVE_FUNC_STD_ISFINITE)
check_math_expr("_finite(1.0))" "<float.h>" HAVE_FUNC__FINITE)
check_math_expr("std::isfinite(1.0)" "<cmath>" HAVE_FUNC_STD_ISFINITE)
check_math_expr("_finite(1.0)" "<float.h>" HAVE_FUNC__FINITE)
2 changes: 1 addition & 1 deletion cmake/FindIsInf.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@
include(VISPFindUtils)

check_math_expr("isinf(1.0)" "<math.h>" HAVE_FUNC_ISINF)
check_math_expr("std::isinf(1.0))" "<cmath>" HAVE_FUNC_STD_ISINF)
check_math_expr("std::isinf(1.0)" "<cmath>" HAVE_FUNC_STD_ISINF)
4 changes: 2 additions & 2 deletions cmake/FindIsNaN.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@
include(VISPFindUtils)

check_math_expr("isnan(1.0)" "<math.h>" HAVE_FUNC_ISNAN)
check_math_expr("std::isnan(1.0))" "<cmath>" HAVE_FUNC_STD_ISNAN)
check_math_expr("_isnan(1.0))" "<float.h>" HAVE_FUNC__ISNAN)
check_math_expr("std::isnan(1.0)" "<cmath>" HAVE_FUNC_STD_ISNAN)
check_math_expr("_isnan(1.0)" "<float.h>" HAVE_FUNC__ISNAN)

0 comments on commit 83555f3

Please sign in to comment.