fix:修正无PATH_MAX定义问题。

This commit is contained in:
taynpg 2024-06-29 10:23:09 +08:00
parent 85f24a28f2
commit cfb7dac873

View File

@ -10,6 +10,10 @@
#include <unistd.h> #include <unistd.h>
#endif #endif
#ifndef PATH_MAX
#define PATH_MAX 256
#endif
namespace fs = std::filesystem; namespace fs = std::filesystem;
CUtil::CUtil() = default; CUtil::CUtil() = default;