Skip to content

Commit d6df632

Browse files
inobelarjeongshin
authored andcommitted
Minor: removed extra semicolon (facebook#937)
Summary: X-link: facebook/litho#937 Latest `emscripten` compiler shows the next warning: ``` yoga/event/event.h:83:6: warning: extra ‘;’ [-Wpedantic] 83 | }; | ^ ``` This small PR fixes it X-link: facebook/yoga#1240 Reviewed By: cortinico, mdvacca Differential Revision: D44775620 Pulled By: philIip fbshipit-source-id: 79b7ca5df2a31ac9a6ef24ef55d4acb6117a8acb
1 parent fdf88d3 commit d6df632

File tree

1 file changed

+1
-1
lines changed
  • packages/react-native/ReactCommon/yoga/yoga/event

1 file changed

+1
-1
lines changed

packages/react-native/ReactCommon/yoga/yoga/event/event.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ struct YOGA_EXPORT Event {
8080
template <Type E>
8181
const TypedData<E>& get() const {
8282
return *static_cast<const TypedData<E>*>(data_);
83-
};
83+
}
8484
};
8585

8686
static void reset();

0 commit comments

Comments
 (0)