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 коммит произвёл Facebook Github Bot
Родитель a816c0321c
Коммит d0485b2f04
1 изменённых файлов: 0 добавлений и 1 удалений

Просмотреть файл

@ -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;
}
}