Add missing colon in SparseMatrix.h.

This commit is contained in:
Rasmus Munk Larsen 2022-12-16 21:50:00 +00:00
parent 3d8a8def8a
commit 04e4f0bb24

View File

@ -1550,7 +1550,7 @@ class Serializer<SparseMatrix<Scalar, Options, StorageIndex>, void> {
// innerNonZeros.
if (!header.compressed) {
std:size_t data_bytes = sizeof(StorageIndex) * header.outer_size;
std::size_t data_bytes = sizeof(StorageIndex) * header.outer_size;
memcpy(dest, value.innerNonZeroPtr(), data_bytes);
dest += data_bytes;
}