Add missing colon in SparseMatrix.h.
diff --git a/Eigen/src/SparseCore/SparseMatrix.h b/Eigen/src/SparseCore/SparseMatrix.h
index b7f437e..6806812 100644
--- a/Eigen/src/SparseCore/SparseMatrix.h
+++ b/Eigen/src/SparseCore/SparseMatrix.h
@@ -1550,7 +1550,7 @@
// 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;
}