linter
This commit is contained in:
@@ -1,10 +1,9 @@
|
||||
#include "system_utils.hpp"
|
||||
|
||||
#include <sys/stat.h>
|
||||
#include <sys/stat.h> // Para stat, mkdir, S_ISDIR
|
||||
|
||||
#include <cerrno>
|
||||
#include <cstdlib>
|
||||
#include <iostream>
|
||||
#include <cerrno> // Para EACCES, EEXIST, ENAMETOOLONG, errno
|
||||
#include <cstdlib> // Para getenv, size_t
|
||||
|
||||
#ifdef _WIN32
|
||||
#include <direct.h>
|
||||
@@ -15,8 +14,8 @@
|
||||
#undef ERROR_ALREADY_EXISTS
|
||||
#endif
|
||||
#else
|
||||
#include <pwd.h>
|
||||
#include <unistd.h>
|
||||
#include <pwd.h> // Para getpwuid, passwd
|
||||
#include <unistd.h> // Para getuid
|
||||
#endif
|
||||
|
||||
namespace SystemUtils {
|
||||
|
||||
Reference in New Issue
Block a user