mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-23 19:42:53 +00:00
AK: Remove unused PrintfImplementation.h
This commit is contained in:
parent
fa56b6cca0
commit
6df5785fc4
Notes:
sideshowbarker
2024-07-17 02:57:43 +09:00
Author: https://github.com/awesomekling
Commit: 6df5785fc4
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/197
Reviewed-by: https://github.com/ADKaster
3 changed files with 0 additions and 622 deletions
|
@ -9,7 +9,6 @@
|
|||
#include <AK/ByteString.h>
|
||||
#include <AK/Checked.h>
|
||||
#include <AK/FlyString.h>
|
||||
#include <AK/PrintfImplementation.h>
|
||||
#include <AK/String.h>
|
||||
#include <AK/StringBuilder.h>
|
||||
#include <AK/StringView.h>
|
||||
|
@ -122,14 +121,6 @@ void StringBuilder::append(char ch)
|
|||
MUST(try_append(ch));
|
||||
}
|
||||
|
||||
void StringBuilder::appendvf(char const* fmt, va_list ap)
|
||||
{
|
||||
printf_internal([this](char*&, char ch) {
|
||||
append(ch);
|
||||
},
|
||||
nullptr, fmt, ap);
|
||||
}
|
||||
|
||||
void StringBuilder::append_repeated(char ch, size_t n)
|
||||
{
|
||||
MUST(try_append_repeated(ch, n));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue