Skip to content

Commit

Permalink
Fix Windows build related to unistd header
Browse files Browse the repository at this point in the history
Fix Windows build related to unistd header.
Remove devcontainer files.
  • Loading branch information
MaksymT17 authored Sep 14, 2024
2 parents 2d95b6c + db6923a commit 682d557
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 52 deletions.
17 changes: 0 additions & 17 deletions .devcontainer/devcontainer.json

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/windows_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ jobs:
echo "preparing new build with cmake..." &&
cd build/ &&
cmake .. &&
cmake --build . &&
echo "Build complete!"
cmake --build . --config Debug
cd Debug
shell: bash
33 changes: 0 additions & 33 deletions Dockerfile

This file was deleted.

2 changes: 2 additions & 0 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
#include <thread>
#include <chrono>
#include <mutex>
#ifndef _WIN32
#include <unistd.h>
#endif
#include <future>

static const std::string shared_mem_name{"/shmsh__47"};
Expand Down

0 comments on commit 682d557

Please sign in to comment.