mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-12-06 18:53:21 +01:00
Replace uses of boost::filesystem with fs
Step two in abstracting away boost::filesystem. To repeat this, simply run: ``` git ls-files \*.cpp \*.h | xargs sed -i 's/boost::filesystem/fs/g' ```
This commit is contained in:
@@ -10,6 +10,6 @@
|
||||
|
||||
#include "fs.h"
|
||||
|
||||
boost::filesystem::path GetTempPath() {
|
||||
return boost::filesystem::temp_directory_path();
|
||||
fs::path GetTempPath() {
|
||||
return fs::temp_directory_path();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user