mirror of https://github.com/AxioDL/metaforce.git
hecl/hecl: Include relevant headers
Ensures the translation unit includes exactly what it needs.
This commit is contained in:
parent
5e98cb139a
commit
e96eb4cac6
|
@ -1,6 +1,14 @@
|
|||
#include "hecl/hecl.hpp"
|
||||
#include <thread>
|
||||
|
||||
#include <algorithm>
|
||||
#include <cstdio>
|
||||
#include <cstdlib>
|
||||
#include <map>
|
||||
#include <memory>
|
||||
#include <mutex>
|
||||
#include <string>
|
||||
#include <string_view>
|
||||
#include <thread>
|
||||
#include <unordered_map>
|
||||
|
||||
#ifdef WIN32
|
||||
|
@ -20,6 +28,8 @@
|
|||
#include <sys/wait.h>
|
||||
#endif
|
||||
|
||||
#include <logvisor/logvisor.hpp>
|
||||
|
||||
namespace hecl {
|
||||
unsigned VerbosityLevel = 0;
|
||||
bool GuiMode = false;
|
||||
|
|
Loading…
Reference in New Issue