Fixed cppcheck warning
This commit is contained in:
@@ -170,8 +170,9 @@ class VectorT {
|
||||
}
|
||||
|
||||
/// construct from an array
|
||||
explicit VectorT(container&& _array) {
|
||||
values_ = _array;
|
||||
explicit VectorT(container&& _array) :
|
||||
values_(_array)
|
||||
{
|
||||
}
|
||||
|
||||
/// copy & cast constructor (explicit)
|
||||
|
||||
Reference in New Issue
Block a user