Update FloatOptional.h

This commit is contained in:
Nick Gerleman
2023-10-03 16:48:47 -07:00
committed by GitHub
parent 564c28b517
commit 1499f55718

View File

@@ -30,7 +30,7 @@ struct FloatOptional {
}
constexpr bool isUndefined() const {
return yoga::isUndefined(value);
return yoga::isUndefined(value_);
}
};