Skip to content

Commit

Permalink
fix: work around deprecated boost header
Browse files Browse the repository at this point in the history
  • Loading branch information
mhx committed Nov 20, 2024
1 parent 9bced66 commit f2d1123
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/os_access_generic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@
#include <folly/portability/PThread.h>
#include <folly/portability/Unistd.h>

#if __has_include(<boost/process/v1/search_path.hpp>)
#include <boost/process/v1/search_path.hpp>
#else
#include <boost/process/search_path.hpp>
#endif

#ifdef __APPLE__
#include <mach/mach.h>
Expand Down

0 comments on commit f2d1123

Please sign in to comment.