From 4e0e945b38c9371e9aa699fd86bf333d6e0ab750 Mon Sep 17 00:00:00 2001 From: Julien Schueller Date: Tue, 20 Feb 2024 15:04:20 +0100 Subject: [PATCH] Fix template-id-cdtor warning --- src/scalar_array.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scalar_array.hpp b/src/scalar_array.hpp index aa4fc96c..520eae0c 100644 --- a/src/scalar_array.hpp +++ b/src/scalar_array.hpp @@ -594,7 +594,7 @@ template class ScalarArray { } private: /// Disallow the copy - Vector(const Vector& o); + Vector(const Vector& o); }; } // end namespace hmat