mirror of
https://github.com/zeek/zeek.git
synced 2025-10-09 01:58:20 +00:00
Fix clang-tidy modernize-use-override warnings in headers
This commit is contained in:
parent
edf3ceb52c
commit
e613e7c304
26 changed files with 67 additions and 68 deletions
|
@ -136,9 +136,9 @@ public:
|
|||
static unsigned int* CurrentTimers() { return current_timers; }
|
||||
|
||||
// IOSource API methods
|
||||
virtual double GetNextTimeout() override;
|
||||
virtual void Process() override;
|
||||
virtual const char* Tag() override { return "TimerMgr"; }
|
||||
double GetNextTimeout() override;
|
||||
void Process() override;
|
||||
const char* Tag() override { return "TimerMgr"; }
|
||||
|
||||
/**
|
||||
* Performs some extra initialization on a timer manager. This shouldn't
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue