From b5fd7631e6d681a89d800b22a153cfe13e4e5631 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Barnab=C3=A1s=20P=C5=91cze?= Date: Tue, 3 Dec 2024 15:12:53 +0000 Subject: test: span: Use intended variable MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It appears that the original intention was to use it in these particular constructor tests: the variable is otherwise unused, and `Span{ v }` is already tested. Signed-off-by: Barnabás Pőcze Reviewed-by: Laurent Pinchart Signed-off-by: Laurent Pinchart --- test/span.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/span.cpp b/test/span.cpp index 5452967d..4b9f3279 100644 --- a/test/span.cpp +++ b/test/span.cpp @@ -143,9 +143,9 @@ protected: Span{ v }; /* Span{ v }; */ - Span{ v }; - /* Span{ v }; */ - /* Span{ v }; */ + Span{ cv }; + /* Span{ cv }; */ + /* Span{ cv }; */ Span dynamicSpan{ i }; Span{ dynamicSpan }; -- cgit v1.2.1