Don't use default in exhaustive switch

Summary:
@public
removes the `default` case from an already exhaustive switch.

Reviewed By: SidharthGuglani

Differential Revision: D13451869

fbshipit-source-id: 32727330c7fce013963f5c83c95a73b230d5c938
This commit is contained in:
David Aurelio
2018-12-13 10:38:10 -08:00
committed by Facebook Github Bot
parent 130a9a2aa2
commit c5f2444048

View File

@@ -44,7 +44,6 @@ inline bool operator==(const YGValue& lhs, const YGValue& rhs) {
return true;
case YGUnitPoint:
case YGUnitPercent:
default:
return lhs.value == rhs.value;
}
}