From e255cdd5629ec343af37f3d760141414c5748c15 Mon Sep 17 00:00:00 2001 From: Yurii Nakonechnyi Date: Fri, 14 Apr 2023 13:23:44 -0700 Subject: [PATCH] Minor: removed extra semicolon (#937) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Summary: X-link: https://github.com/facebook/litho/pull/937 Latest `emscripten` compiler shows the next warning: ``` yoga/event/event.h:83:6: warning: extra ‘;’ [-Wpedantic] 83 | }; | ^ ``` This small PR fixes it Pull Request resolved: https://github.com/facebook/yoga/pull/1240 Test Plan: landcastle Reviewed By: cortinico, mdvacca Differential Revision: D44775620 Pulled By: philIip fbshipit-source-id: 79b7ca5df2a31ac9a6ef24ef55d4acb6117a8acb --- yoga/event/event.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yoga/event/event.h b/yoga/event/event.h index fb81b8fa..c917467e 100644 --- a/yoga/event/event.h +++ b/yoga/event/event.h @@ -80,7 +80,7 @@ struct YOGA_EXPORT Event { template const TypedData& get() const { return *static_cast*>(data_); - }; + } }; static void reset();