Fix compile error

This commit is contained in:
badaix 2024-03-31 21:42:40 +02:00
parent ace5c07310
commit a96cabd81a
3 changed files with 3 additions and 3 deletions

View file

@ -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}

View file

@ -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

View file

@ -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>