From 29525870af8d53d72dc204383f0899f3d8525042 Mon Sep 17 00:00:00 2001 From: Peter Munch Date: Fri, 2 Jul 2021 09:45:43 +0200 Subject: [PATCH] Improve assert message in Convert --- include/deal.II/base/patterns.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/deal.II/base/patterns.h b/include/deal.II/base/patterns.h index f3d0d08d53..8cc66785b7 100644 --- a/include/deal.II/base/patterns.h +++ b/include/deal.II/base/patterns.h @@ -1402,8 +1402,8 @@ namespace Patterns DeclException2(ExcNoMatch, std::string, std::string, - << "The string " << arg1 << " does not match the pattern \"" - << arg2 << "\""); + << "The string \"" << arg1 + << "\" does not match the pattern \"" << arg2 << "\""); //@} } // namespace Tools } // namespace Patterns -- 2.39.5