diff options
| author | Gavin Andresen <[email protected]> | 2011-11-15 14:28:51 -0500 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2011-11-15 14:30:24 -0500 |
| commit | c4de918478dbcf72a9f76b27435bd1d892e1e339 (patch) | |
| tree | c9d7ad5fc70eac52351d22048f135c1169a8219d /src/db.cpp | |
| parent | Fix crash-on-osx-on-shutdown bug. And cleanup CDB handling in Rewrite. (diff) | |
| download | discoin-c4de918478dbcf72a9f76b27435bd1d892e1e339.tar.xz discoin-c4de918478dbcf72a9f76b27435bd1d892e1e339.zip | |
Tweak handling of boost filesystem versions
Diffstat (limited to 'src/db.cpp')
| -rw-r--r-- | src/db.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/db.cpp b/src/db.cpp index 643ed1f7a..efd2a375e 100644 --- a/src/db.cpp +++ b/src/db.cpp @@ -51,7 +51,7 @@ static void EnvShutdown(bool fRemoveLogFiles) while (it != filesystem::directory_iterator()) { const filesystem::path& p = it->path(); -#if BOOST_FILESYSTEM_VERSION == 3 +#if BOOST_FILESYSTEM_VERSION >= 3 std::string f = p.filename().generic_string(); #else std::string f = p.filename(); |