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", "cuchar": "cpp",
"compare": "cpp", "compare": "cpp",
"concepts": "cpp", "concepts": "cpp",
"numbers": "cpp" "numbers": "cpp",
"filesystem": "cpp",
"xstring": "cpp"
} }
} }

View File

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