Fixed cppcheck warning

This commit is contained in:
Jan Möbius
2023-08-22 16:40:33 +02:00
parent f55975e6b5
commit 41d6176c3b

View File

@@ -170,8 +170,9 @@ class VectorT {
} }
/// construct from an array /// construct from an array
explicit VectorT(container&& _array) { explicit VectorT(container&& _array) :
values_ = _array; values_(_array)
{
} }
/// copy & cast constructor (explicit) /// copy & cast constructor (explicit)