From 9222a65fd3a72537e99c479af764ec025764c987 Mon Sep 17 00:00:00 2001 From: silverqx Date: Sun, 4 Aug 2024 09:22:16 +0200 Subject: [PATCH] bugfix static_assert() message --- include/orm/utils/integralcast.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/orm/utils/integralcast.hpp b/include/orm/utils/integralcast.hpp index 0c9ec84b4..133898acd 100644 --- a/include/orm/utils/integralcast.hpp +++ b/include/orm/utils/integralcast.hpp @@ -52,7 +52,8 @@ namespace Private return "char"; else // This should never happen :/ - static_assert (false, "Invalid C template argument."); + static_assert (false, + "Unhandled code branch in the Private::IntegralTypeName()."); } /*! Compute number group separators count for reserve for formatNumber() function. */