mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Fix clang-tidy modernize-use-default-member-init warnings in headers
This commit is contained in:
parent
a05b4abdf7
commit
fb55c8856e
49 changed files with 134 additions and 185 deletions
|
@ -19,9 +19,6 @@ using ObjPtr = IntrusivePtr<Obj>;
|
|||
*/
|
||||
class ScriptCoverageManager {
|
||||
public:
|
||||
ScriptCoverageManager();
|
||||
virtual ~ScriptCoverageManager() = default;
|
||||
|
||||
/**
|
||||
* Imports Zeek script Stmt usage information from file pointed to by
|
||||
* environment variable ZEEK_PROFILER_FILE.
|
||||
|
@ -64,12 +61,12 @@ private:
|
|||
* Indicates whether new statements will not be considered as part of
|
||||
* coverage statistics because it was marked with the @no-test tag.
|
||||
*/
|
||||
uint32_t ignoring;
|
||||
uint32_t ignoring = 0;
|
||||
|
||||
/**
|
||||
* The character to use to delimit ScriptCoverageManager output files. Default is '\t'.
|
||||
*/
|
||||
char delim;
|
||||
char delim = '\t';
|
||||
|
||||
/**
|
||||
* This maps Stmt location-desc pairs to the total number of times that
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue