mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-04-06 10:55:57 +02:00
Supporting GCC 6.0
This patch is also needed to build success for GCC 6.0. Refer issue - https://github.com/open-source-parsers/jsoncpp/issues/411
This commit is contained in:
parent
75570d7068
commit
cf86c473a5
@ -62,7 +62,7 @@ static inline bool InRange(double d, T min, U max) {
|
||||
}
|
||||
#else // if !defined(JSON_USE_INT64_DOUBLE_CONVERSION)
|
||||
static inline double integerToDouble(Json::UInt64 value) {
|
||||
return static_cast<double>(Int64(value / 2)) * 2.0 + Int64(value & 1);
|
||||
return static_cast<double>(Int64(value / 2)) * 2.0 + static_cast<double>(Int64(value & 1));
|
||||
}
|
||||
|
||||
template <typename T> static inline double integerToDouble(T value) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user