From: Daniel Arndt Date: Tue, 22 Nov 2022 15:03:00 +0000 (-0500) Subject: Avoid "!." X-Git-Tag: v9.5.0-rc1~825^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F14365%2Fhead;p=dealii.git Avoid "!." --- diff --git a/cmake/configure/TestBoostBug/polymorphic_derived2.hpp b/cmake/configure/TestBoostBug/polymorphic_derived2.hpp index 078c4fb573..10774495f0 100644 --- a/cmake/configure/TestBoostBug/polymorphic_derived2.hpp +++ b/cmake/configure/TestBoostBug/polymorphic_derived2.hpp @@ -27,7 +27,7 @@ class polymorphic_derived2 : // we use this because we want to assign a key to this type // but we don't want to explicitly instantiate code every time -// we do so!!!. If we don't do this, we end up with the same +// we do so!!! If we don't do this, we end up with the same // code in BOTH the DLL which implements polymorphic_derived2 // as well as the main program. BOOST_CLASS_EXPORT_KEY(polymorphic_derived2) diff --git a/cmake/configure/configure_20_boost.cmake b/cmake/configure/configure_20_boost.cmake index e9f29edd0b..1919606eed 100644 --- a/cmake/configure/configure_20_boost.cmake +++ b/cmake/configure/configure_20_boost.cmake @@ -275,7 +275,7 @@ IF(NOT DEAL_II_WITH_BOOST) ELSE() MESSAGE(FATAL_ERROR "\n" "Unmet configuration requirements: " - "DEAL_II_WITH_BOOST required, but set to OFF!.\n\n" + "DEAL_II_WITH_BOOST required, but set to OFF!\n\n" ) ENDIF() ENDIF() diff --git a/cmake/configure/configure_30_kokkos.cmake b/cmake/configure/configure_30_kokkos.cmake index 2d08d36a56..b906bb4310 100644 --- a/cmake/configure/configure_30_kokkos.cmake +++ b/cmake/configure/configure_30_kokkos.cmake @@ -42,7 +42,7 @@ IF(NOT DEAL_II_WITH_KOKKOS) ELSE() MESSAGE(FATAL_ERROR "\n" "Unmet configuration requirements: " - "DEAL_II_WITH_KOKKOS required, but set to OFF!.\n\n" + "DEAL_II_WITH_KOKKOS required, but set to OFF!\n\n" ) ENDIF() ENDIF()