io/BufferedOutputStream: remove unused method Format()

This commit is contained in:
Max Kellermann
2023-03-06 16:25:52 +01:00
parent 1f56960c44
commit 2ffc7c2088
2 changed files with 0 additions and 50 deletions

View File

@@ -4,7 +4,6 @@
#ifndef BUFFERED_OUTPUT_STREAM_HXX
#define BUFFERED_OUTPUT_STREAM_HXX
#include "util/Compiler.h"
#include "util/DynamicFifoBuffer.hxx"
#include <fmt/core.h>
@@ -65,12 +64,6 @@ public:
*/
void Write(const char *p);
/**
* Write a printf-style formatted string.
*/
gcc_printf(2,3)
void Format(const char *fmt, ...);
void VFmt(fmt::string_view format_str, fmt::format_args args);
template<typename S, typename... Args>