Skip to content

Commit

Permalink
Fix 'virtual' is redundant since function is already declared as 'ove…
Browse files Browse the repository at this point in the history
…rride' warnings. Last 2 I hope
  • Loading branch information
billy1arm committed Aug 21, 2024
1 parent a5ee37e commit 46d4a86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mangosd/RAThread.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ class RAThread : public ACE_Task_Base
explicit RAThread(uint16 port, const char* host);
virtual ~RAThread();

virtual int open(void* unused) override;
virtual int svc() override;
int open(void* unused) override;
int svc() override;
};

#endif
Expand Down

0 comments on commit 46d4a86

Please sign in to comment.