clang format run 1

simplify_debugging
Bret Curtis 12 months ago
parent 31e90fb478
commit d0077fba25

@ -179,13 +179,11 @@ namespace Debug
public:
DebugOutputBuffer(std::unique_ptr<DebugOutputBase> sink)
: m_sink(std::move(sink))
{}
std::streamsize xsputn(const char* s, std::streamsize n) override
{
return m_sink->write(s, n);
}
std::streamsize xsputn(const char* s, std::streamsize n) override { return m_sink->write(s, n); }
int overflow(int c = EOF) override
{
if (c != EOF)
@ -212,7 +210,8 @@ namespace Debug
public:
DebugOutputStream(std::unique_ptr<DebugOutputBase> sink)
: std::ostream(new DebugOutputBuffer(std::move(sink)))
{}
{
}
void open(std::unique_ptr<DebugOutputBase> new_sink)
{
@ -220,10 +219,7 @@ namespace Debug
rdbuf(new DebugOutputBuffer(std::move(new_sink)));
}
~DebugOutputStream()
{
delete rdbuf();
}
~DebugOutputStream() { delete rdbuf(); }
};
#if defined _WIN32 && defined _DEBUG

Loading…
Cancel
Save