From 2ce5b1fdca907a6bcc637e8ce84d288ce58ad3fe Mon Sep 17 00:00:00 2001 From: Alexander Novotny Date: Tue, 6 Jan 2026 16:40:16 -0500 Subject: [PATCH] Remove erroneous virtual tags --- GridKit/LinearAlgebra/SparseMatrix/CsrMatrix.hpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/GridKit/LinearAlgebra/SparseMatrix/CsrMatrix.hpp b/GridKit/LinearAlgebra/SparseMatrix/CsrMatrix.hpp index 975db353..44d35acc 100644 --- a/GridKit/LinearAlgebra/SparseMatrix/CsrMatrix.hpp +++ b/GridKit/LinearAlgebra/SparseMatrix/CsrMatrix.hpp @@ -68,13 +68,13 @@ namespace GridKit // update Values just updates values; it allocates if necessary. // values have the same dimensions between different formats - virtual int copyValues(const RealT* new_vals, - memory::MemorySpace memspace_in, - memory::MemorySpace memspace_out); + int copyValues(const RealT* new_vals, + memory::MemorySpace memspace_in, + memory::MemorySpace memspace_out); // set new values just sets the pointer, use caution. - virtual int setValuesPointer(RealT* new_vals, - memory::MemorySpace memspace); + int setValuesPointer(RealT* new_vals, + memory::MemorySpace memspace); private: IdxT n_{0}; ///< number of rows