General: Include headers directly where necessary

Ensures includes are explicitly included where necessary to avoid
indirect inclusions.
This commit is contained in:
Lioncash
2019-08-30 03:52:22 -04:00
parent df1e450728
commit 5935e84dab
18 changed files with 101 additions and 49 deletions

View File

@@ -1,3 +1,5 @@
#include "nod/DirectoryEnumerator.hpp"
#ifdef _WIN32
#include <windows.h>
#else
@@ -5,10 +7,9 @@
#include <dirent.h>
#endif
#include <cstring>
#include <map>
#include "nod/DirectoryEnumerator.hpp"
namespace nod {
DirectoryEnumerator::DirectoryEnumerator(SystemStringView path, Mode mode, bool sizeSort, bool reverse, bool noHidden) {