mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 15:48:19 +00:00
file_analysis/Analyzer: eliminate duplicate constructor
This commit is contained in:
parent
ace11e74d2
commit
653b3f43e0
1 changed files with 1 additions and 6 deletions
|
@ -166,13 +166,8 @@ protected:
|
||||||
* @param arg_file the file to which the the analyzer is being attached.
|
* @param arg_file the file to which the the analyzer is being attached.
|
||||||
*/
|
*/
|
||||||
Analyzer(RecordVal* arg_args, File* arg_file)
|
Analyzer(RecordVal* arg_args, File* arg_file)
|
||||||
: tag(),
|
: Analyzer({}, arg_args, arg_file)
|
||||||
args(arg_args->Ref()->AsRecordVal()),
|
|
||||||
file(arg_file),
|
|
||||||
got_stream_delivery(false),
|
|
||||||
skip(false)
|
|
||||||
{
|
{
|
||||||
id = ++id_counter;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue