We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 97a585a + b239294 commit d33e6b2Copy full SHA for d33e6b2
aws-cpp-sdk-core/source/external/json-cpp/jsoncpp.cpp
@@ -3070,7 +3070,8 @@ Value& Path::make(Value& root) const {
3070
// recognized in your jurisdiction.
3071
// See file LICENSE for detail or copy at http://jsoncpp.sourceforge.net/LICENSE
3072
3073
-#include <cmath>
+#include <math.h>
3074
+//#include <cmath>
3075
3076
#if !defined(AWS_JSON_IS_AMALGAMATION)
3077
#include <json/writer.h>
@@ -3098,7 +3099,11 @@ Value& Path::make(Value& root) const {
3098
3099
3100
#else
3101
3102
+#ifdef isfinite
3103
+#define IS_FINITE isfinite
3104
+#else
3105
#define IS_FINITE std::isfinite
3106
+#endif
3107
3108
#endif
3109
0 commit comments