From 1f365b554844a87d865846e5374b61f3fa28805b Mon Sep 17 00:00:00 2001 From: Timo Heister Date: Sat, 4 Mar 2017 08:19:34 -0500 Subject: [PATCH] fix matrix free compilation MSVC complains --- include/deal.II/matrix_free/operators.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/deal.II/matrix_free/operators.h b/include/deal.II/matrix_free/operators.h index 2cf53e665f..095319bc1a 100644 --- a/include/deal.II/matrix_free/operators.h +++ b/include/deal.II/matrix_free/operators.h @@ -767,7 +767,7 @@ namespace MatrixFreeOperators template void Base:: - initialize (std_cxx11::shared_ptr::value_type> > data_) + initialize (std_cxx11::shared_ptr::value_type> > data_) { data = data_; edge_constrained_indices.clear(); @@ -779,7 +779,7 @@ namespace MatrixFreeOperators template void Base:: - initialize (std_cxx11::shared_ptr::value_type> > data_, + initialize (std_cxx11::shared_ptr::value_type> > data_, const MGConstrainedDoFs &mg_constrained_dofs, const unsigned int level) { @@ -1252,7 +1252,7 @@ namespace MatrixFreeOperators template - std_cxx11::shared_ptr< Table<2, VectorizedArray::value_type> > > + std_cxx11::shared_ptr< Table<2, VectorizedArray< typename LaplaceOperator::value_type> > > LaplaceOperator:: get_coefficient() { -- 2.39.5