Commit 23613355 authored by Max Kellermann's avatar Max Kellermann

client/Response: remove unused method FormatV()

parent 0d97eba7
......@@ -43,12 +43,6 @@ Response::Write(const char *data) noexcept
}
bool
Response::FormatV(const char *fmt, std::va_list args) noexcept
{
return Write(FormatStringV(fmt, args).c_str());
}
bool
Response::VFmt(fmt::string_view format_str, fmt::format_args args) noexcept
{
fmt::memory_buffer buffer;
......
......@@ -28,7 +28,6 @@
#include <fmt/format.h>
#endif
#include <cstdarg>
#include <cstddef>
template<typename T> struct ConstBuffer;
......@@ -79,7 +78,6 @@ public:
bool Write(const void *data, size_t length) noexcept;
bool Write(const char *data) noexcept;
bool FormatV(const char *fmt, std::va_list args) noexcept;
bool VFmt(fmt::string_view format_str, fmt::format_args args) noexcept;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment