Skip to content

Commit

Permalink
Fix more header file issues for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
rhornung67 committed Aug 15, 2024
1 parent 2331d02 commit 1667a8d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/common/DataUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@
#include <cstdlib>
#include <cstring>
#include <stdexcept>
#if defined(_WIN32)
#include<direct.h>
#else
#include <unistd.h>
#endif

namespace rajaperf
{
Expand Down
2 changes: 1 addition & 1 deletion src/common/Executor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
#include <algorithm>

#if defined(_WIN32)
#include<io.h>
#include<direct.h>
#else
#include <unistd.h>
#endif
Expand Down

0 comments on commit 1667a8d

Please sign in to comment.