Standarts of LLVM

This commit is contained in:
tobid7 2022-11-14 16:27:04 +01:00
parent 20c3a525c8
commit 62fa5ede9d
2 changed files with 16 additions and 14 deletions

View File

@ -60,6 +60,8 @@
"cuchar": "cpp",
"compare": "cpp",
"concepts": "cpp",
"numbers": "cpp"
"numbers": "cpp",
"filesystem": "cpp",
"xstring": "cpp"
}
}

View File

@ -1,16 +1,16 @@
#pragma once
#include <string>
#include <sstream>
#include <string>
namespace RenderD7
{
class StealConsole
{
public:
StealConsole();
~StealConsole();
std::string GetStdout();
private:
std::stringstream stolen_stdout;
};
}
namespace RenderD7 {
class StealConsole {
public:
StealConsole();
~StealConsole();
std::string GetStdout();
private:
std::stringstream stolen_stdout;
};
} // namespace RenderD7