mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Fix Coverity issue with new Attributes
ctor
This commit is contained in:
parent
8632d79775
commit
111583602e
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ public:
|
|||
: Attributes(std::vector<AttrPtr>{}, std::move(t), in_record, is_global, false) {}
|
||||
|
||||
Attributes(std::vector<AttrPtr> a, TypePtr t, bool in_record, bool is_global)
|
||||
: Attributes(a, std::move(t), in_record, is_global, false) {}
|
||||
: Attributes(std::move(a), std::move(t), in_record, is_global, false) {}
|
||||
|
||||
|
||||
~Attributes() override = default;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue