From 41fcd0bb2b39975cc0f93bca4ebe246af8c75e6e Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Mon, 27 Aug 2018 12:39:43 +0200 Subject: [PATCH] Fix last remaining instance of passing shared_ptr by value --- .../deal.II/lac/la_parallel_vector.templates.h | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/include/deal.II/lac/la_parallel_vector.templates.h b/include/deal.II/lac/la_parallel_vector.templates.h index a476d61b9e..8f73c8d486 100644 --- a/include/deal.II/lac/la_parallel_vector.templates.h +++ b/include/deal.II/lac/la_parallel_vector.templates.h @@ -97,13 +97,14 @@ namespace LinearAlgebra {} static void - import(const ::dealii::LinearAlgebra::ReadWriteVector & /*V*/, - ::dealii::VectorOperation::values /*operation*/, - std::shared_ptr - /*communication_pattern*/, - const IndexSet & /*locally_owned_elem*/, - ::dealii::MemorySpace::MemorySpaceData - & /*data*/) + import( + const ::dealii::LinearAlgebra::ReadWriteVector & /*V*/, + ::dealii::VectorOperation::values /*operation*/, + const std::shared_ptr & + /*communication_pattern*/, + const IndexSet & /*locally_owned_elem*/, + ::dealii::MemorySpace::MemorySpaceData + & /*data*/) {} template -- 2.39.5