Skip to content

Commit 44d467b

Browse files
Merge pull request #527 from keszybz/fix-comment
Close comment to avoid compiler warning
2 parents e594325 + 0d7b21e commit 44d467b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

numexpr/numexpr_config.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
#include "msvc_function_stubs.hpp"
4949
#else
5050
/* GCC/Clang version: use std:: (can't use it for windows)
51-
msvc_function_stubs contains windows alternatives
51+
msvc_function_stubs contains windows alternatives */
5252
/* Due to casting problems (normally return ints not bools, easiest to define
53-
non-overloaded wrappers for these functions) */
53+
non-overloaded wrappers for these functions) */
5454
inline bool isfinitef_(float x) { return !!::isfinite(x); }
5555
inline bool isnanf_(float x) { return !!::isnan(x); }
5656
inline bool isfinited(double x) { return !!::isfinite(x); }

0 commit comments

Comments
 (0)