diff options
author | Ali Mohammad Pur <ali.mpfard@gmail.com> | 2021-12-19 22:58:28 +0330 |
---|---|---|
committer | Ali Mohammad Pur <Ali.mpfard@gmail.com> | 2021-12-21 21:24:36 +0330 |
commit | f0709c7a24098ef5fbd568c37a99670d56f15616 (patch) | |
tree | 133ca0dab42f360a690988b2d8d5cad7dbf80218 /Userland/Applications/Spreadsheet | |
parent | db7a6d6e74c6483cbe392235560176d1e0992363 (diff) | |
download | serenity-f0709c7a24098ef5fbd568c37a99670d56f15616.zip |
LibC+AK: Implement all sorts of wprintf variants
Diffstat (limited to 'Userland/Applications/Spreadsheet')
-rw-r--r-- | Userland/Applications/Spreadsheet/CellType/Format.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Applications/Spreadsheet/CellType/Format.cpp b/Userland/Applications/Spreadsheet/CellType/Format.cpp index bcdce48acf..f33d11e320 100644 --- a/Userland/Applications/Spreadsheet/CellType/Format.cpp +++ b/Userland/Applications/Spreadsheet/CellType/Format.cpp @@ -19,8 +19,8 @@ struct SingleEntryListNext { } }; -template<typename PutChFunc, typename ArgumentListRefT, template<typename T, typename U = ArgumentListRefT> typename NextArgument> -struct PrintfImpl : public PrintfImplementation::PrintfImpl<PutChFunc, ArgumentListRefT, NextArgument> { +template<typename PutChFunc, typename ArgumentListRefT, template<typename T, typename U = ArgumentListRefT> typename NextArgument, typename CharType> +struct PrintfImpl : public PrintfImplementation::PrintfImpl<PutChFunc, ArgumentListRefT, NextArgument, CharType> { ALWAYS_INLINE PrintfImpl(PutChFunc& putch, char*& bufptr, const int& nwritten) : PrintfImplementation::PrintfImpl<PutChFunc, ArgumentListRefT, NextArgument>(putch, bufptr, nwritten) { |