posix/epicsMath.h

Include "<cmath>" for c++11 and pull in
non-namespace versions of isnan() and friends.
This commit is contained in:
Michael Davidsaver
2019-12-16 10:28:27 -08:00
parent 24f08460bb
commit 60a092fa50
+2
View File
@@ -15,12 +15,14 @@
#ifdef __cplusplus
#if __cplusplus>=201103L
#include <cmath>
using std::isfinite;
using std::isinf;
using std::isnan;
using std::isnormal;
#endif
extern "C" {
#endif