Skip to content

Commit

Permalink
Correction of clang-format regression.
Browse files Browse the repository at this point in the history
  • Loading branch information
tturocy committed Apr 16, 2024
1 parent 13e314b commit 0ef930e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/dvector.imp
Expand Up @@ -45,8 +45,8 @@ template <class T> void DVector<T>::setindex()

template <class T>
DVector<T>::DVector(const PVector<int> &shape)
: PVector<T>(static_cast<const Array<int> &>(shape)),
dvlen(shape.Lengths().Length()), dvidx(shape.Lengths().Length())
: PVector<T>(static_cast<const Array<int> &>(shape)), dvlen(shape.Lengths().Length()),
dvidx(shape.Lengths().Length())
{
dvptr = new T **[dvlen.Length()];
dvptr -= 1;
Expand Down

0 comments on commit 0ef930e

Please sign in to comment.