mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 00:58:19 +00:00
Fix clang-tidy modernize-use-override findings
This commit is contained in:
parent
ee319fc1c5
commit
2f0e3a5e23
2 changed files with 2 additions and 1 deletions
|
@ -64,7 +64,7 @@ using DelayInfoPtr = std::shared_ptr<DelayInfo>;
|
|||
class LogDelayTokenVal : public OpaqueVal {
|
||||
public:
|
||||
explicit LogDelayTokenVal(DelayTokenType token) : OpaqueVal(zeek::detail::log_delay_token_type), token(token) {}
|
||||
virtual ~LogDelayTokenVal() = default;
|
||||
~LogDelayTokenVal() override {};
|
||||
|
||||
ValPtr DoClone(CloneState* state) override;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue