From 111583602ebeac87447d0647160b83e3843b38de Mon Sep 17 00:00:00 2001 From: Evan Typanski Date: Wed, 20 Aug 2025 08:23:20 -0400 Subject: [PATCH] Fix Coverity issue with new `Attributes` ctor --- src/Attr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Attr.h b/src/Attr.h index 15cb471c20..d1fefa6f5a 100644 --- a/src/Attr.h +++ b/src/Attr.h @@ -114,7 +114,7 @@ public: : Attributes(std::vector{}, std::move(t), in_record, is_global, false) {} Attributes(std::vector 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;