2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 21:07:42 +00:00

General: Include necessary includes

Ensures all necessary includes are included and also removes headers
that aren't necessary
This commit is contained in:
Lioncash
2019-09-04 17:22:05 -04:00
parent 0b30fedef5
commit 5e66bee28c
36 changed files with 243 additions and 86 deletions

View File

@@ -1,7 +1,10 @@
#include "hecl/hecl.hpp"
#include "hecl/Database.hpp"
#include <regex>
#include "hecl/Database.hpp"
#include "hecl/FourCC.hpp"
namespace hecl {
static const SystemRegex regPATHCOMP(_SYS_STR("[/\\\\]*([^/\\\\]+)"), SystemRegex::ECMAScript | SystemRegex::optimize);
static const SystemRegex regDRIVELETTER(_SYS_STR("^([^/]*)/"), SystemRegex::ECMAScript | SystemRegex::optimize);