Skip to content

Commit 0d7b21e

Browse files
committed
Close comment to avoid compiler warning
This appears over and over in the build log: In file included from numexpr/module.hpp:17, from numexpr/module.cpp:12: numexpr/numexpr_config.hpp:52:1: warning: ‘/*’ within comment [-Wcomment] 52 | /* Due to casting problems (normally return ints not bools, easiest to define
1 parent e594325 commit 0d7b21e

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)