Fix Coverity issue with new Attributes ctor

This commit is contained in:
Evan Typanski 2025-08-20 08:23:20 -04:00
parent 8632d79775
commit 111583602e

View file

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