Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
23613355
Commit
23613355
authored
May 27, 2021
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
client/Response: remove unused method FormatV()
parent
0d97eba7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
8 deletions
+0
-8
Response.cxx
src/client/Response.cxx
+0
-6
Response.hxx
src/client/Response.hxx
+0
-2
No files found.
src/client/Response.cxx
View file @
23613355
...
...
@@ -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
;
...
...
src/client/Response.hxx
View file @
23613355
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment