Skip to content

Commit

Permalink
tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
dimitre committed Sep 1, 2024
1 parent 4d35d91 commit 229d010
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions commandLine/src/utils/Utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,21 @@
#include <iostream>
#include <fstream>
#include <string>
#include <regex>
#include <array>
#include <stdio.h>

#ifdef TARGET_WIN32
#include <direct.h>

#define GetCurrentDir _getcwd
#include <direct.h>
#define GetCurrentDir _getcwd
#elif defined(TARGET_LINUX)
#include <unistd.h>
#define GetCurrentDir getcwd
#include <unistd.h>
#define GetCurrentDir getcwd
#else
#include <mach-o/dyld.h> /* _NSGetExecutablePath */
#include <limits.h> /* PATH_MAX */
#include <mach-o/dyld.h> /* _NSGetExecutablePath */
#include <limits.h> /* PATH_MAX */
#endif

#include <regex>

using std::unique_ptr;

Expand Down

0 comments on commit 229d010

Please sign in to comment.