move log.h include in each file instead of pch, link libcurl and compile for mac
This commit is contained in:
@@ -1544,8 +1544,9 @@ public:
|
||||
|
||||
if (dp != NULL)
|
||||
{
|
||||
while (ep = readdir (dp))
|
||||
names.push_back(ep->d_name);
|
||||
while ((ep = readdir(dp)))
|
||||
if (ep->d_type != DT_DIR)
|
||||
names.push_back(ep->d_name);
|
||||
closedir(dp);
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user