Fixed a typo in the comment.

This commit is contained in:
Andrey Semashev
2019-04-16 12:17:05 +03:00
parent 192866fb0e
commit b9a6648b93

View File

@@ -536,7 +536,7 @@ namespace path_detail // intentionally don't use filesystem::detail to not bring
bool is_relative() const { return !is_absolute(); }
bool is_absolute() const
{
// Windows CE has no root name (aka driver letters)
// Windows CE has no root name (aka drive letters)
# if defined(BOOST_WINDOWS_API) && !defined(UNDER_CE)
return has_root_name() && has_root_directory();
# else