diff options
| author | Wladimir J. van der Laan <[email protected]> | 2017-03-01 17:05:50 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2017-04-03 12:32:32 +0200 |
| commit | bac5c9cf643e9333479ac667426d0b70f8f3aa7f (patch) | |
| tree | 5fc0eac69ace5d21c1a1b40e6b610058b92a4bd7 /src/bitcoin-cli.cpp | |
| parent | Replace includes of boost/filesystem.h with fs.h (diff) | |
| download | discoin-bac5c9cf643e9333479ac667426d0b70f8f3aa7f.tar.xz discoin-bac5c9cf643e9333479ac667426d0b70f8f3aa7f.zip | |
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'
```
Diffstat (limited to 'src/bitcoin-cli.cpp')
| -rw-r--r-- | src/bitcoin-cli.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bitcoin-cli.cpp b/src/bitcoin-cli.cpp index 4d81ae62d..5edd43d41 100644 --- a/src/bitcoin-cli.cpp +++ b/src/bitcoin-cli.cpp @@ -96,7 +96,7 @@ static int AppInitRPC(int argc, char* argv[]) } return EXIT_SUCCESS; } - if (!boost::filesystem::is_directory(GetDataDir(false))) { + if (!fs::is_directory(GetDataDir(false))) { fprintf(stderr, "Error: Specified data directory \"%s\" does not exist.\n", GetArg("-datadir", "").c_str()); return EXIT_FAILURE; } |