From a538bc9d91385b4112044caf3ad8d349fecbc26a Mon Sep 17 00:00:00 2001 From: Markus Blatt <mblatt@dune-project.org> Date: Fri, 29 Oct 2010 12:15:34 +0000 Subject: [PATCH] BugFix: Copying is forbidden as we do not offer deep copying. [[Imported from SVN: r1332]] --- dune/istl/remoteindices.hh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dune/istl/remoteindices.hh b/dune/istl/remoteindices.hh index 483474a0f..042a8e12a 100644 --- a/dune/istl/remoteindices.hh +++ b/dune/istl/remoteindices.hh @@ -392,6 +392,10 @@ namespace Dune { inline const ParallelIndexSet& destinationIndexSet() const; private: + /** copying is forbidden. */ + RemoteIndices(const RemoteIndices&) + {} + /** @brief Index set used at the source of the communication. */ const ParallelIndexSet* source_; -- GitLab