aboutsummaryrefslogtreecommitdiff
path: root/src/fs.h
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2019-04-29 21:15:52 +0300
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2019-04-30 10:05:54 +0300
commita0a222eec0b7f615a756e5e0dcec9b02296f999c (patch)
tree480420fc0aa6370b83547c66d71a0df3781d19c7 /src/fs.h
parent4f65af97b408663c39ee83c5015956dbfc642dfe (diff)
downloadbitcoin-a0a222eec0b7f615a756e5e0dcec9b02296f999c.tar.xz
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.
Diffstat (limited to 'src/fs.h')
-rw-r--r--src/fs.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/fs.h b/src/fs.h
index 8af81f173b..c713297d6e 100644
--- a/src/fs.h
+++ b/src/fs.h
@@ -11,6 +11,7 @@
#include <ext/stdio_filebuf.h>
#endif
+#define BOOST_FILESYSTEM_NO_DEPRECATED
#include <boost/filesystem.hpp>
#include <boost/filesystem/fstream.hpp>