From: Martin Kronbichler Date: Thu, 25 Jun 2009 10:28:02 +0000 (+0000) Subject: Removed a double declarartion. X-Git-Tag: v8.0.0~7582 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=542416a5937cc4d65ec9e15ea2f02e2c08fb6429;p=dealii.git Removed a double declarartion. git-svn-id: https://svn.dealii.org/trunk@18972 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/include/lac/full_matrix.h b/deal.II/lac/include/lac/full_matrix.h index 1b60fed51a..ee6df736c7 100644 --- a/deal.II/lac/include/lac/full_matrix.h +++ b/deal.II/lac/include/lac/full_matrix.h @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by the deal.II authors +// Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer diff --git a/deal.II/lac/source/trilinos_block_vector.cc b/deal.II/lac/source/trilinos_block_vector.cc index 3ab97b6054..2bcbeff550 100644 --- a/deal.II/lac/source/trilinos_block_vector.cc +++ b/deal.II/lac/source/trilinos_block_vector.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2008 by the deal.II authors +// Copyright (C) 2008, 2009 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -48,21 +48,6 @@ namespace TrilinosWrappers - template - BlockVector & - BlockVector::operator = (const ::dealii::BlockVector &v) - { - Assert (n_blocks() == v.n_blocks(), - ExcDimensionMismatch(n_blocks(),v.n_blocks())); - - for (unsigned int i=0; in_blocks(); ++i) - this->components[i] = v.block(i); - - return *this; - } - - - BlockVector & BlockVector::operator = (const ::dealii::TrilinosWrappers::BlockVector &v) {