Make sure root windows_path have slash at the end

This commit is contained in:
Igor Pissolati
2025-04-24 01:02:27 -03:00
parent 6d0ad1dd61
commit 02ed4fbb03

View File

@@ -117,6 +117,11 @@ class windows_path
path.append(folder);
}
if (this->is_absolute() && this->folders_.empty())
{
path.push_back(u'\\');
}
return path;
}