From a0a222eec0b7f615a756e5e0dcec9b02296f999c Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Mon, 29 Apr 2019 21:15:52 +0300 Subject: [PATCH] Replace deprecated Boost Filesystem function Boost Filesystem basename() function is deprecated since v1.36.0. Also, defining BOOST_FILESYSTEM_NO_DEPRECATED before including filesystem headers is strongly recommended. This prevents inadvertent use of old features, particularly legacy function names, that have been replaced and are going to go away in the future. --- src/dbwrapper.cpp | 2 +- src/fs.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/dbwrapper.cpp b/src/dbwrapper.cpp index 58d8cc2c9d0..34896f7ab26 100644 --- a/src/dbwrapper.cpp +++ b/src/dbwrapper.cpp @@ -115,7 +115,7 @@ static leveldb::Options GetOptions(size_t nCacheSize) } CDBWrapper::CDBWrapper(const fs::path& path, size_t nCacheSize, bool fMemory, bool fWipe, bool obfuscate) - : m_name(fs::basename(path)) + : m_name{path.stem().string()} { penv = nullptr; readoptions.verify_checksums = true; diff --git a/src/fs.h b/src/fs.h index 8af81f173bd..c713297d6ef 100644 --- a/src/fs.h +++ b/src/fs.h @@ -11,6 +11,7 @@ #include #endif +#define BOOST_FILESYSTEM_NO_DEPRECATED #include #include