mirror of
https://github.com/zeek/zeek.git
synced 2025-10-16 05:28:20 +00:00
Plugins: Clean up explicit uses of namespaces in places where they're not necessary.
This commit covers all of the plugin classes.
This commit is contained in:
parent
fe0c22c789
commit
70c2397f69
169 changed files with 3139 additions and 3141 deletions
|
@ -13,12 +13,12 @@
|
|||
|
||||
namespace zeek::logging::writer::detail {
|
||||
|
||||
class SQLite : public zeek::logging::WriterBackend {
|
||||
class SQLite : public WriterBackend {
|
||||
public:
|
||||
explicit SQLite(zeek::logging::WriterFrontend* frontend);
|
||||
explicit SQLite(WriterFrontend* frontend);
|
||||
~SQLite() override;
|
||||
|
||||
static zeek::logging::WriterBackend* Instantiate(zeek::logging::WriterFrontend* frontend)
|
||||
static WriterBackend* Instantiate(WriterFrontend* frontend)
|
||||
{ return new SQLite(frontend); }
|
||||
|
||||
protected:
|
||||
|
@ -49,7 +49,7 @@ private:
|
|||
std::string unset_field;
|
||||
std::string empty_field;
|
||||
|
||||
zeek::threading::formatter::Ascii* io;
|
||||
threading::formatter::Ascii* io;
|
||||
};
|
||||
|
||||
} // namespace zeek::logging::writer::detail
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue