From ad4cec932249445160017cd2cf57917c1c2e2501 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 3 Feb 2023 14:43:19 -0500 Subject: Suppress/fix new warnings in clang-tidy 15 --- src/LV2Features.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/LV2Features.cpp') diff --git a/src/LV2Features.cpp b/src/LV2Features.cpp index 65fe6f6b..7d9003c0 100644 --- a/src/LV2Features.cpp +++ b/src/LV2Features.cpp @@ -71,7 +71,7 @@ LV2Features::lv2_features(World& world, Node* node) const { FeatureArray::FeatureVector vec; for (const auto& f : _features) { - std::shared_ptr fptr = f->feature(world, node); + const std::shared_ptr fptr = f->feature(world, node); if (fptr) { vec.push_back(fptr); } -- cgit v1.2.1