Tweak handling of boost filesystem versions

This commit is contained in:
Gavin Andresen
2011-11-15 14:28:51 -05:00
parent 8d0923109d
commit c4de918478
2 changed files with 2 additions and 2 deletions

View File

@@ -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();