Skip to content

Commit

Permalink
Fix compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
badaix committed Mar 31, 2024
1 parent ace5c07 commit a96cabd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ jobs:
key: ${{ runner.os }}-dependencies
- name: dependencies
if: steps.cache-dependencies.outputs.cache-hit != 'true'
run: vcpkg.exe install libflac libvorbis soxr opus boost-asio boost-process --triplet x64-windows
run: vcpkg.exe install libflac libvorbis soxr opus boost-asio --triplet x64-windows
- name: configure
run: |
echo vcpkg installation root: ${env:VCPKG_INSTALLATION_ROOT}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ jobs:
key: ${{ runner.os }}-dependencies
- name: Get dependenciesenv
if: steps.cache-dependencies.outputs.cache-hit != 'true'
run: vcpkg.exe install libflac libvorbis soxr opus boost-asio boost-process --triplet x64-windows
run: vcpkg.exe install libflac libvorbis soxr opus boost-asio --triplet x64-windows
- name: configure
run: |
echo vcpkg installation root: $env:VCPKG_INSTALLATION_ROOT
Expand Down
2 changes: 1 addition & 1 deletion client/player/player.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
#pragma GCC diagnostic ignored "-Wpedantic"
#include <boost/process/v2/execute.hpp>
#include <boost/process/v2/process.hpp>
#endif
#pragma GCC diagnostic pop
#endif

// standard headers
#include <cmath>
Expand Down

0 comments on commit a96cabd

Please sign in to comment.