Support path mappings for analysis

This commit is contained in:
Maurice Heumann
2025-03-19 10:45:49 +01:00
parent 44dfc2edaa
commit d21a114f84
2 changed files with 16 additions and 1 deletions

View File

@@ -27,7 +27,7 @@ class file_system
{
if (!win_path.is_absolute())
{
throw std::runtime_error("Only absolute paths can be translated!");
throw std::runtime_error("Only absolute paths can be translated: " + win_path.string());
}
const auto mapping = this->mappings_.find(win_path);