Skip to content

Commit

Permalink
flipper | remove unnecessary semicolons
Browse files Browse the repository at this point in the history
Summary: arfx codebase enforces the code to not have unnecessary semicolons, failing the build. fixing it

Differential Revision: D65275930

fbshipit-source-id: 42620246c107847cc0c8005515c8bda898373aa0
  • Loading branch information
arhelmus authored and facebook-github-bot committed Oct 31, 2024
1 parent 5642755 commit 2fbff87
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions xplat/Flipper/FlipperConnectionManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class FlipperConnectionManager {
class Callbacks;

public:
virtual ~FlipperConnectionManager(){};
virtual ~FlipperConnectionManager() {}

/**
Establishes a connection to the ws server.
Expand Down Expand Up @@ -84,7 +84,7 @@ class FlipperConnectionManager {

class FlipperConnectionManager::Callbacks {
public:
virtual ~Callbacks(){};
virtual ~Callbacks() {}

virtual void onConnected() = 0;

Expand Down
2 changes: 1 addition & 1 deletion xplat/Flipper/FlipperResponder.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace flipper {
*/
class FlipperResponder {
public:
virtual ~FlipperResponder(){};
virtual ~FlipperResponder() {}

/**
* Deliver a successful response to the Flipper desktop app.
Expand Down
2 changes: 1 addition & 1 deletion xplat/Flipper/FlipperState.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ enum State { success, in_progress, failed };

class StateElement {
public:
StateElement(std::string name, State state) : name_(name), state_(state){};
StateElement(std::string name, State state) : name_(name), state_(state) {}
std::string name_;
State state_;
};
Expand Down

0 comments on commit 2fbff87

Please sign in to comment.