client/Response: remove unused method FormatV()
This commit is contained in:
parent
0d97eba7a5
commit
23613355f3
|
@ -42,12 +42,6 @@ Response::Write(const char *data) noexcept
|
|||
return client.Write(data);
|
||||
}
|
||||
|
||||
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
|
||||
{
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue