This commit is contained in:
2025-07-10 12:03:50 +03:00
parent a35e72d166
commit 4d13c86e3d
5 changed files with 209 additions and 243 deletions

View File

@@ -164,7 +164,8 @@ concept mcc_nonconst_lvref = std::is_lvalue_reference_v<T> && !std::is_const_v<s
template <typename T>
concept mcc_error_c = std::convertible_to<T, bool> && mcc_formattable<T>;
concept mcc_error_c = std::convertible_to<T, bool>;
// concept mcc_error_c = std::convertible_to<T, bool> && mcc_formattable<T>;
namespace details
{