From d0850da2e7109d2fb4d947a126d135cc0bb36b53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C8=98tefan=20Talpalaru?= Date: Thu, 13 Jun 2024 15:54:42 +0200 Subject: [PATCH] Fix build with boost-1.85 --- client_generic/Client/Player.cpp | 3 +-- client_generic/Client/lua_playlist.h | 3 +-- client_generic/ContentDecoder/graph_playlist.h | 3 +-- client_generic/TupleStorage/luastorage.cpp | 3 +-- 4 files changed, 4 insertions(+), 8 deletions(-) diff --git a/client_generic/Client/Player.cpp b/client_generic/Client/Player.cpp index 1f65d761..fb031edb 100644 --- a/client_generic/Client/Player.cpp +++ b/client_generic/Client/Player.cpp @@ -60,7 +60,7 @@ #include "boost/filesystem/path.hpp" #include "boost/filesystem/operations.hpp" -#include "boost/filesystem/convenience.hpp" +#include "boost/filesystem.hpp" #if defined(MAC) || defined(WIN32) #define HONOR_VBL_SYNC @@ -69,7 +69,6 @@ using boost::filesystem::path; using boost::filesystem::exists; using boost::filesystem::directory_iterator; -using boost::filesystem::extension; using namespace DisplayOutput; diff --git a/client_generic/Client/lua_playlist.h b/client_generic/Client/lua_playlist.h index fbe5a333..f007cd3e 100644 --- a/client_generic/Client/lua_playlist.h +++ b/client_generic/Client/lua_playlist.h @@ -17,13 +17,12 @@ #include "boost/filesystem/path.hpp" #include "boost/filesystem/operations.hpp" -#include "boost/filesystem/convenience.hpp" +#include "boost/filesystem.hpp" #include using boost::filesystem::path; using boost::filesystem::exists; using boost::filesystem::directory_iterator; -using boost::filesystem::extension; // Lua. diff --git a/client_generic/ContentDecoder/graph_playlist.h b/client_generic/ContentDecoder/graph_playlist.h index 1f0a6cd0..5d9b8d7e 100644 --- a/client_generic/ContentDecoder/graph_playlist.h +++ b/client_generic/ContentDecoder/graph_playlist.h @@ -13,13 +13,12 @@ #include "boost/filesystem/path.hpp" #include "boost/filesystem/operations.hpp" -#include "boost/filesystem/convenience.hpp" +#include "boost/filesystem.hpp" using boost::filesystem::path; using boost::filesystem::exists; using boost::filesystem::no_check; using boost::filesystem::directory_iterator; -using boost::filesystem::extension; namespace ContentDecoder { diff --git a/client_generic/TupleStorage/luastorage.cpp b/client_generic/TupleStorage/luastorage.cpp index efbe8867..20db0638 100644 --- a/client_generic/TupleStorage/luastorage.cpp +++ b/client_generic/TupleStorage/luastorage.cpp @@ -9,12 +9,11 @@ #include "boost/filesystem/path.hpp" #include "boost/filesystem/operations.hpp" -#include "boost/filesystem/convenience.hpp" +#include "boost/filesystem.hpp" using boost::filesystem::path; using boost::filesystem::exists; using boost::filesystem::directory_iterator; -using boost::filesystem::extension; using namespace std;