mirror of
https://github.com/zeek/zeek.git
synced 2025-10-14 04:28:20 +00:00
make it compile with new version of AsciiInputOutput
This commit is contained in:
parent
5704496f26
commit
96aa8776d3
4 changed files with 4 additions and 4 deletions
|
@ -23,7 +23,7 @@ using threading::Field;
|
||||||
|
|
||||||
SQLite::SQLite(ReaderFrontend *frontend) : ReaderBackend(frontend)
|
SQLite::SQLite(ReaderFrontend *frontend) : ReaderBackend(frontend)
|
||||||
{
|
{
|
||||||
io = new AsciiInputOutput(this);
|
io = new AsciiInputOutput(this, AsciiInputOutput::SeparatorInfo());
|
||||||
}
|
}
|
||||||
|
|
||||||
SQLite::~SQLite()
|
SQLite::~SQLite()
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include "../ReaderBackend.h"
|
#include "../ReaderBackend.h"
|
||||||
#include "../../AsciiInputOutput.h"
|
#include "../../threading/AsciiInputOutput.h"
|
||||||
|
|
||||||
#include "sqlite3.h"
|
#include "sqlite3.h"
|
||||||
|
|
||||||
|
|
|
@ -39,7 +39,7 @@ SQLite::SQLite(WriterFrontend* frontend) : WriterBackend(frontend)
|
||||||
|
|
||||||
db = 0;
|
db = 0;
|
||||||
|
|
||||||
io = new AsciiInputOutput(this, set_separator, unset_field);
|
io = new AsciiInputOutput(this, AsciiInputOutput::SeparatorInfo(set_separator, unset_field));
|
||||||
}
|
}
|
||||||
|
|
||||||
SQLite::~SQLite()
|
SQLite::~SQLite()
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
|
|
||||||
#include "../WriterBackend.h"
|
#include "../WriterBackend.h"
|
||||||
#include "sqlite3.h"
|
#include "sqlite3.h"
|
||||||
#include "../../AsciiInputOutput.h"
|
#include "../../threading/AsciiInputOutput.h"
|
||||||
|
|
||||||
namespace logging { namespace writer {
|
namespace logging { namespace writer {
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue