Skip to content

Commit

Permalink
Build Error fix #6
Browse files Browse the repository at this point in the history
Override keyword was missing in two virtual functions
  • Loading branch information
munezbn authored May 26, 2023
2 parents f7882d8 + a368d39 commit 4ed6873
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions skia/RNKeyEventModule.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ class RNKeyEventModule : public NativeEventEmitterModule {

private:
int callbackId_ = 0;
void startObserving();
void stopObserving();
void startObserving()override;
void stopObserving()override;
unsigned int repeatCount_=0;
folly::dynamic generateEventPayload(react::RSkKeyInput keyInput,unsigned int repeatCount = 0);
};
Expand Down

0 comments on commit 4ed6873

Please sign in to comment.