1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 16:57:46 +00:00

AK: Format the contents of NNRP<T> if T is formattable

This commit is contained in:
Ali Mohammad Pur 2022-12-10 19:33:37 +03:30 committed by Ali Mohammad Pur
parent ff038f306a
commit 08fc42002c
2 changed files with 12 additions and 0 deletions

View file

@ -39,6 +39,9 @@ inline constexpr bool HasFormatter = true;
template<typename T>
inline constexpr bool HasFormatter<T, typename Formatter<T>::__no_formatter_defined> = false;
template<typename T>
concept Formattable = HasFormatter<T>;
constexpr size_t max_format_arguments = 256;
struct TypeErasedParameter {