From ea413604d4e81972a5b22c5aeb9a886810c0c3dc Mon Sep 17 00:00:00 2001 From: wolf Date: Fri, 7 Jan 2000 10:49:56 +0000 Subject: [PATCH] Unfortunately have to remove the 'explicit' keyword from the copy constructor since it more or less disallows vector... git-svn-id: https://svn.dealii.org/trunk@2171 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/full_matrix.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deal.II/lac/include/lac/full_matrix.h b/deal.II/lac/include/lac/full_matrix.h index 00ef2217b7..5eadbb8a25 100644 --- a/deal.II/lac/include/lac/full_matrix.h +++ b/deal.II/lac/include/lac/full_matrix.h @@ -90,7 +90,7 @@ class FullMatrix : public Subscriptor * huge amount of computing time for large * matrices!! */ - explicit FullMatrix (const FullMatrix&); + FullMatrix (const FullMatrix&); /** * Destructor. Release all memory. -- 2.39.5