file_analysis/Analyzer: eliminate duplicate constructor

This commit is contained in:
Max Kellermann 2020-02-12 10:37:48 +01:00
parent ace11e74d2
commit 653b3f43e0

View file

@ -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: