From c638102575ffd7cbd7dc4947f4540d97a84a90ee Mon Sep 17 00:00:00 2001 From: hartmann Date: Wed, 11 Jun 2008 13:07:56 +0000 Subject: [PATCH] Reinclude assertion which has been removed accidentally in patch -r12645. git-svn-id: https://svn.dealii.org/trunk@16296 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/base/source/parameter_handler.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/base/source/parameter_handler.cc b/deal.II/base/source/parameter_handler.cc index a31ee4f02b..3fd5882253 100644 --- a/deal.II/base/source/parameter_handler.cc +++ b/deal.II/base/source/parameter_handler.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 by the deal.II authors +// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -744,7 +744,7 @@ long int ParameterHandler::get_integer (const std::string &entry_string) const char *endptr; long int i = std::strtol (s.c_str(), &endptr, 10); // assert there was no error -// AssertThrow (*endptr == '\0', ExcConversionError(s)); + AssertThrow (*endptr == '\0', ExcConversionError(s)); return i; } -- 2.39.5