From c5f24440489aaad73f3d3fa4f50a6eed07de95f7 Mon Sep 17 00:00:00 2001 From: David Aurelio Date: Thu, 13 Dec 2018 10:38:10 -0800 Subject: [PATCH] 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 --- yoga/YGValue.h | 1 - 1 file changed, 1 deletion(-) diff --git a/yoga/YGValue.h b/yoga/YGValue.h index 4e43f7b2..59440be3 100644 --- a/yoga/YGValue.h +++ b/yoga/YGValue.h @@ -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; } }