Skip to content

Commit

Permalink
Avoid deprecation warnings as of Boost 1.86 when compiling for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Martchus committed Sep 3, 2024
1 parent 7038b0d commit ab7bc74
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions syncthingconnector/syncthingprocess.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,12 @@
#endif

#ifdef PLATFORM_WINDOWS
#if BOOST_VERSION >= 108600
#include <boost/process/v1/windows.hpp>
#else
#include <boost/process/windows.hpp>
#endif
#endif

#include <atomic>
#include <chrono>
Expand Down

0 comments on commit ab7bc74

Please sign in to comment.