fixed compiling error for vc

This commit is contained in:
郑树新 2019-02-12 13:38:57 +08:00
parent c86ec682bd
commit 9135e09db7

View File

@ -6,6 +6,17 @@
#include "acl_cpp/stdlib/scan_dir.hpp"
#endif
#ifdef ACL_UNIX
# include <dirent.h>
# include <unistd.h>
#elif defined(ACL_WINDOWS)
# if defined(ACL_BCB_COMPILER)
# include <dirent.h>
# else
# include <direct.h>
# endif
#endif
namespace acl
{