mirror of
https://github.com/zeek/zeek.git
synced 2025-10-10 10: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
|
@ -70,14 +70,14 @@ private:
|
|||
|
||||
class LocDB : public MMDB {
|
||||
public:
|
||||
bool OpenFromScriptConfig();
|
||||
std::string_view Description() { return "GeoIP location database"; }
|
||||
bool OpenFromScriptConfig() override;
|
||||
std::string_view Description() override { return "GeoIP location database"; }
|
||||
};
|
||||
|
||||
class AsnDB : public MMDB {
|
||||
public:
|
||||
bool OpenFromScriptConfig();
|
||||
std::string_view Description() { return "GeoIP ASN database"; }
|
||||
bool OpenFromScriptConfig() override;
|
||||
std::string_view Description() override { return "GeoIP ASN database"; }
|
||||
};
|
||||
|
||||
#endif // USE_GEOIP
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue