From: Wolfgang Bangerth Date: Mon, 29 Jun 2009 09:33:48 +0000 (+0000) Subject: Fix a compile problem in a template function that had apparently never been executed. X-Git-Tag: v8.0.0~7563 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0943717cecea23e3876376d65bf1a1f0a6f83e7e;p=dealii.git 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 --- 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)); }