From 26fc076ddf88a17f6584b1fa57e429e387c5cc34 Mon Sep 17 00:00:00 2001 From: Stephen Saunders Date: Sat, 8 Feb 2025 11:51:56 -0500 Subject: [PATCH] Fix missing template prefix in DebugInfo::insert() --- framework/debug_info.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/debug_info.h b/framework/debug_info.h index 93fc8d968..d6ce26ef4 100644 --- a/framework/debug_info.h +++ b/framework/debug_info.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2019-2024, Arm Limited and Contributors +/* Copyright (c) 2019-2025, Arm Limited and Contributors * * SPDX-License-Identifier: Apache-2.0 * @@ -191,7 +191,7 @@ class DebugInfo { if (field->label == label) { - if (dynamic_cast *>(field.get())) + if (dynamic_cast *>(field.get())) { field = std::make_unique>(label, args...); }