Skip to content

Commit 4755c43

Browse files
author
Arthur Glowacki
committed
revert size_t to int in covolve1d func
1 parent db2337a commit 4755c43

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/data_struct/spectra.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ DLL_EXPORT ArrayTr<T_real> convolve1d(const ArrayTr<T_real>& arr, const ArrayTr<
306306
out.setZero(n);
307307
for (size_t i = 0; i < n; ++i)
308308
{
309-
for (size_t j(min_v.size() - 1), k(i); j >= 0; --j)
309+
for (int j(min_v.size() - 1), k(i); j >= 0; --j)
310310
{
311311
out[i] += min_v[j] * max_v[k];
312312
++k;

src/support/eigen-git-mirror

Submodule eigen-git-mirror updated from e986838 to 6dbbf0a

src/support/pybind11

Submodule pybind11 updated 298 files

vcpkg

Submodule vcpkg updated 3537 files

0 commit comments

Comments
 (0)