From 04e4f0bb242ba09f73f3d34431b79206c8327b38 Mon Sep 17 00:00:00 2001 From: Rasmus Munk Larsen Date: Fri, 16 Dec 2022 21:50:00 +0000 Subject: [PATCH] Add missing colon in SparseMatrix.h. --- Eigen/src/SparseCore/SparseMatrix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Eigen/src/SparseCore/SparseMatrix.h b/Eigen/src/SparseCore/SparseMatrix.h index b7f437ede..68068124f 100644 --- a/Eigen/src/SparseCore/SparseMatrix.h +++ b/Eigen/src/SparseCore/SparseMatrix.h @@ -1550,7 +1550,7 @@ class Serializer, 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; }