mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38: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
|
@ -13,15 +13,14 @@ namespace zeek::file_analysis::detail {
|
|||
*/
|
||||
class PE : public file_analysis::Analyzer {
|
||||
public:
|
||||
~PE();
|
||||
~PE() override;
|
||||
|
||||
static file_analysis::Analyzer* Instantiate(RecordValPtr args, file_analysis::File* file) {
|
||||
return new PE(std::move(args), file);
|
||||
}
|
||||
|
||||
virtual bool DeliverStream(const u_char* data, uint64_t len);
|
||||
|
||||
virtual bool EndOfFile();
|
||||
bool DeliverStream(const u_char* data, uint64_t len) override;
|
||||
bool EndOfFile() override;
|
||||
|
||||
protected:
|
||||
PE(RecordValPtr args, file_analysis::File* file);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue