From 9858fe806d87a74edf25741f9afb413e7c654f57 Mon Sep 17 00:00:00 2001 From: philipportner Date: Thu, 10 Oct 2024 20:57:26 +0200 Subject: [PATCH] [kernels] remove unnecessary template instantiation The template instantiation of DenseMatrix is explicitly instantiated in the DenseMatrix header and does not need to be instantiated again. --- src/runtime/local/datastructures/DenseMatrix.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/runtime/local/datastructures/DenseMatrix.cpp b/src/runtime/local/datastructures/DenseMatrix.cpp index 73470a94d..2d343ef15 100644 --- a/src/runtime/local/datastructures/DenseMatrix.cpp +++ b/src/runtime/local/datastructures/DenseMatrix.cpp @@ -341,4 +341,3 @@ template class DenseMatrix; template class DenseMatrix; template class DenseMatrix; template class DenseMatrix; -template class DenseMatrix;