From 57c70ed46f137a480a3c6cc18fa4e17ce7d28a1d Mon Sep 17 00:00:00 2001 From: Ralf Hartmann Date: Mon, 20 Sep 2004 07:05:37 +0000 Subject: [PATCH] Declare missing exception. git-svn-id: https://svn.dealii.org/trunk@9642 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/block_vector_base.h | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/deal.II/lac/include/lac/block_vector_base.h b/deal.II/lac/include/lac/block_vector_base.h index 5ac797a48d..168a7dfe33 100644 --- a/deal.II/lac/include/lac/block_vector_base.h +++ b/deal.II/lac/include/lac/block_vector_base.h @@ -969,7 +969,16 @@ class BlockVectorBase */ void equ (const value_type a, const BlockVectorBase& V, const value_type b, const BlockVectorBase& W); - + + /** @addtogroup Exceptions + * @{ */ + + /** + * Exception. + */ + DeclException0 (ExcNotMatchingBlockSizes); + //@} + protected: /** * Pointer to the array of components. @@ -2056,7 +2065,7 @@ BlockVectorBase:: operator == (const BlockVectorBase &v) const { Assert (block_indices == v.block_indices, - ExcNotmatchingBlockSizes()); + ExcNotMatchingBlockSizes()); for (unsigned int i=0;i