mirror of
https://github.com/open-source-parsers/jsoncpp.git
synced 2025-04-06 02:45:02 +02:00
Fixed a double -> float compilation warning/error.
This commit is contained in:
parent
c025697ea5
commit
acdefb0869
@ -875,7 +875,7 @@ Value::asFloat() const
|
||||
case nullValue:
|
||||
return 0.0;
|
||||
case booleanValue:
|
||||
return value_.bool_ ? 1.0 : 0.0;
|
||||
return value_.bool_ ? 1.0f : 0.0f;
|
||||
default:
|
||||
JSON_FAIL_MESSAGE("Value is not convertible to float.");
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user