mirror of
https://github.com/AxioDL/nod.git
synced 2025-12-08 21:17:51 +00:00
General: Include headers directly where necessary
Ensures includes are explicitly included where necessary to avoid indirect inclusions.
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user