mirror of
https://github.com/zeek/zeek.git
synced 2025-10-01 22:28:20 +00:00
Merge remote-tracking branch 'origin/topic/etyp/coverity-attr'
* origin/topic/etyp/coverity-attr: Fix Coverity issue with new `Attributes` ctor
This commit is contained in:
commit
5a1c4fd5fe
3 changed files with 6 additions and 2 deletions
4
CHANGES
4
CHANGES
|
@ -1,3 +1,7 @@
|
|||
8.1.0-dev.101 | 2025-08-20 11:38:37 -0400
|
||||
|
||||
* Fix Coverity issue with new `Attributes` ctor (Evan Typanski, Corelight)
|
||||
|
||||
8.1.0-dev.99 | 2025-08-19 15:08:35 -0700
|
||||
|
||||
* CI: Update CentOS 9 to Python 3.13 (Tim Wojtulewicz, Corelight)
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
8.1.0-dev.99
|
||||
8.1.0-dev.101
|
||||
|
|
|
@ -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