mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-04-28 12:58:00 +03:00
clang format run 1
This commit is contained in:
parent
31e90fb478
commit
d0077fba25
1 changed files with 5 additions and 9 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue