Clear warnings, including new warnings from VC++ 2015 preview.

This commit is contained in:
Beman
2015-01-05 10:34:24 -05:00
parent f17852e98d
commit bb5a0ff09d
8 changed files with 168 additions and 168 deletions

View File

@@ -660,11 +660,11 @@ namespace filesystem
const path& dot_path()
{
# ifdef BOOST_WINDOWS_API
static const fs::path dot(L".");
static const fs::path dot_pth(L".");
# else
static const fs::path dot(".");
static const fs::path dot_pth(".");
# endif
return dot;
return dot_pth;
}
BOOST_FILESYSTEM_DECL