From: Wolfgang Bangerth Date: Mon, 20 Aug 2007 21:28:22 +0000 (+0000) Subject: Rectify friend declaration so that icc10 is also happy. X-Git-Tag: v8.0.0~10055 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=877d748d92ab45e6cf7c1b927791527d86ce14fe;p=dealii.git Rectify friend declaration so that icc10 is also happy. git-svn-id: https://svn.dealii.org/trunk@14992 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/lac/include/lac/block_matrix_base.h b/deal.II/lac/include/lac/block_matrix_base.h index 103eb2d213..c6af8a2289 100644 --- a/deal.II/lac/include/lac/block_matrix_base.h +++ b/deal.II/lac/include/lac/block_matrix_base.h @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2004, 2005, 2006 by the deal.II authors +// Copyright (C) 2004, 2005, 2006, 2007 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -26,6 +26,8 @@ DEAL_II_NAMESPACE_OPEN +template class MatrixIterator; + /*! @addtogroup Matrix1 *@{ @@ -282,7 +284,7 @@ namespace BlockMatrixIterators * friend. */ template - friend class MatrixIterator; + friend class dealii::MatrixIterator; }; }