From bc8996559b0a1704d1b65c37b9b6fdbdaf9d4460 Mon Sep 17 00:00:00 2001 From: Christian Mazakas Date: Wed, 14 Jun 2023 12:39:16 -0700 Subject: [PATCH] Remove unnecessary backticks from static_assert() messages --- include/boost/unordered/concurrent_flat_map.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/unordered/concurrent_flat_map.hpp b/include/boost/unordered/concurrent_flat_map.hpp index e0abf6a7..aad729f5 100644 --- a/include/boost/unordered/concurrent_flat_map.hpp +++ b/include/boost/unordered/concurrent_flat_map.hpp @@ -27,12 +27,12 @@ #define BOOST_UNORDERED_STATIC_ASSERT_INVOCABLE(F) \ static_assert(boost::unordered::detail::is_invocable::value, \ - "The provided Callable must be invocable with `value_type&`"); + "The provided Callable must be invocable with value_type&"); #define BOOST_UNORDERED_STATIC_ASSERT_CONST_INVOCABLE(F) \ static_assert( \ boost::unordered::detail::is_invocable::value, \ - "The provided Callable must be invocable with `value_type const&`"); + "The provided Callable must be invocable with value_type const&"); #if BOOST_CXX_VERSION >= 202002L