k-order DLL: fix bug introduced in 1f7d3beddc

For the IntSequence class, the initialization with {} and () are no longer
equivalent.
time-shift
Sébastien Villemot 2019-02-12 19:09:28 +01:00
parent 002e3d3770
commit 9dfb556740
No known key found for this signature in database
GPG Key ID: 2CECE9350ECEBE4A
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ KordpDynare::populateDerivativesContainer(const TwoDMatrix &g, int ord, const st
// model derivatives FSSparseTensor instance
FSSparseTensor *mdTi = (new FSSparseTensor(ord, nJcols, nY));
IntSequence s{ord, 0};
IntSequence s(ord, 0);
if (ord == 1)
{