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:
Evan Typanski 2025-08-20 11:38:37 -04:00
commit 5a1c4fd5fe
3 changed files with 6 additions and 2 deletions

View file

@ -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 8.1.0-dev.99 | 2025-08-19 15:08:35 -0700
* CI: Update CentOS 9 to Python 3.13 (Tim Wojtulewicz, Corelight) * CI: Update CentOS 9 to Python 3.13 (Tim Wojtulewicz, Corelight)

View file

@ -1 +1 @@
8.1.0-dev.99 8.1.0-dev.101

View file

@ -114,7 +114,7 @@ public:
: Attributes(std::vector<AttrPtr>{}, std::move(t), in_record, is_global, false) {} : 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(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; ~Attributes() override = default;