Fabric: `fromDynamic` for float numbers was moved to `core` module

Summary:
@public
Otherwise, it can mess with implementation for `int`s and causes some errors where `float` implementation was requested but `int` was applied.

Reviewed By: mdvacca

Differential Revision: D8601752

fbshipit-source-id: cfe51b7785ff29ee4ad88f0f1cbfed335557d5ef
This commit is contained in:
Valentin Shergin 2018-06-26 11:32:53 -07:00 committed by Facebook Github Bot
parent 8ce758f48a
commit 97bc0c03ba
2 changed files with 2 additions and 4 deletions

View File

@ -22,6 +22,8 @@ inline void fromDynamic(const folly::dynamic &value, int &result) {
// So this always converts the value to int64 instead.
result = value.asInt();
}
inline void fromDynamic(const folly::dynamic &value, float &result) { result = (float)value.asDouble(); }
inline void fromDynamic(const folly::dynamic &value, double &result) { result = value.asDouble(); }
inline void fromDynamic(const folly::dynamic &value, std::string &result) { result = value.getString(); }
template <typename T>

View File

@ -55,10 +55,6 @@ inline std::string toString(const SharedColor &value) {
#pragma mark - Geometry
inline void fromDynamic(const folly::dynamic &value, Float &result) {
result = value.asDouble();
}
inline void fromDynamic(const folly::dynamic &value, Point &result) {
if (value.isObject()) {
result = Point {(Float)value["x"].asDouble(), (Float)value["y"].asDouble()};