From 6d66f26697a478e365937600fb39cc20c3d37399 Mon Sep 17 00:00:00 2001 From: Peter Munch Date: Thu, 16 Jan 2020 07:30:59 +0100 Subject: [PATCH] Fix input arguemnt type of ExcFileNotOpen() --- include/deal.II/base/exceptions.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/deal.II/base/exceptions.h b/include/deal.II/base/exceptions.h index b22af1053d..a39dc457b9 100644 --- a/include/deal.II/base/exceptions.h +++ b/include/deal.II/base/exceptions.h @@ -741,8 +741,8 @@ namespace StandardExceptions /** * An error occurred opening the named file. * - * The constructor takes a single argument of type char* naming the - * file. + * The constructor takes a single argument of type std::string naming + * the file. */ DeclException1(ExcFileNotOpen, std::string, -- 2.39.5