Skip to content

Commit

Permalink
[kernels] remove unnecessary template instantiation
Browse files Browse the repository at this point in the history
The template instantiation of DenseMatrix<const char *> is explicitly
instantiated in the DenseMatrix header and does not need to be
instantiated again.
  • Loading branch information
philipportner committed Oct 10, 2024
1 parent afc25b5 commit 9858fe8
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/runtime/local/datastructures/DenseMatrix.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -341,4 +341,3 @@ template class DenseMatrix<unsigned char>;
template class DenseMatrix<unsigned int>;
template class DenseMatrix<unsigned long>;
template class DenseMatrix<bool>;
template class DenseMatrix<const char *>;

0 comments on commit 9858fe8

Please sign in to comment.