From 0943717cecea23e3876376d65bf1a1f0a6f83e7e Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 29 Jun 2009 09:33:48 +0000 Subject: [PATCH] Fix a compile problem in a template function that had apparently never been executed. git-svn-id: https://svn.dealii.org/trunk@18992 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/lac/include/lac/trilinos_vector.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/lac/include/lac/trilinos_vector.h b/deal.II/lac/include/lac/trilinos_vector.h index 5583137340..3f5f6aff3b 100755 --- a/deal.II/lac/include/lac/trilinos_vector.h +++ b/deal.II/lac/include/lac/trilinos_vector.h @@ -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 @@ -438,7 +438,7 @@ namespace TrilinosWrappers const int ierr = vector->ReplaceGlobalValues (size, &indices[0], &values[0]); - AssertThrow (ierr == 0, VectorBase::ExcTrilinosError()); + AssertThrow (ierr == 0, VectorBase::ExcTrilinosError(ierr)); } -- 2.39.5