mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-12 14:59:44 +03:00
test: span: Use intended variable
It appears that the original intention was to use it in these particular constructor tests: the variable is otherwise unused, and `Span<const int>{ v }` is already tested. Signed-off-by: Barnabás Pőcze <pobrn@protonmail.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
This commit is contained in:
parent
8f7155ddfb
commit
b5fd7631e6
1 changed files with 3 additions and 3 deletions
|
@ -143,9 +143,9 @@ protected:
|
|||
Span<const int>{ v };
|
||||
/* Span<float>{ v }; */
|
||||
|
||||
Span<const int>{ v };
|
||||
/* Span<int>{ v }; */
|
||||
/* Span<const float>{ v }; */
|
||||
Span<const int>{ cv };
|
||||
/* Span<int>{ cv }; */
|
||||
/* Span<const float>{ cv }; */
|
||||
|
||||
Span<int> dynamicSpan{ i };
|
||||
Span<int>{ dynamicSpan };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue