Track upstream LLVM changes

This commit is contained in:
David Zarzycki
2020-07-17 06:33:39 -04:00
parent 8df0fd4f9f
commit 71e6d0612b
2 changed files with 3 additions and 2 deletions

View File

@@ -624,7 +624,7 @@ class ModuleInterfaceLoaderImpl {
if (shouldLoadAdjacentModule) {
if (fs.exists(modulePath)) {
result.first = modulePath;
result.first = modulePath.str();
}
}
@@ -641,7 +641,7 @@ class ModuleInterfaceLoaderImpl {
}
if (path) {
if (fs.exists(*path)) {
result.second = *path;
result.second = path->str();
}
}
}