Skip to content

Commit

Permalink
Remove unnecessary semi-colon before method body (#48266)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: #48266

For some clang build configurations the semi-colon triggers `-Wsemicolon-before-method-body`. This fixes that warning in iOS sources.

## Changelog

[Internal]

Reviewed By: cipolleschi

Differential Revision: D67203041

fbshipit-source-id: f2f2f3799691c3fc59e102a852ca2cf61154e55e
  • Loading branch information
rozele authored and facebook-github-bot committed Dec 14, 2024
1 parent ae90dd3 commit 9a2b807
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ @implementation RCTNativeAnimatedNodesManager {
}

- (instancetype)initWithBridge:(nullable RCTBridge *)bridge
surfacePresenter:(id<RCTSurfacePresenterStub>)surfacePresenter;
surfacePresenter:(id<RCTSurfacePresenterStub>)surfacePresenter
{
if ((self = [super init])) {
_bridge = bridge;
Expand Down

0 comments on commit 9a2b807

Please sign in to comment.