Skip to content

Commit a79b0f9

Browse files
committed
[lldb] Fix build after Clang API change at rev 769d282
1 parent 087b67c commit a79b0f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Plugins/ExpressionParser/Clang/ClangModulesDeclVendor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ bool ClangModulesDeclVendorImpl::AddModule(const SourceModule &module,
336336
auto file = HS.lookupModuleMapFile(*dir, is_framework);
337337
if (!file)
338338
return error();
339-
if (!HS.loadModuleMapFile(file, is_system))
339+
if (!HS.loadModuleMapFile(*file, is_system))
340340
return error();
341341
}
342342
}

0 commit comments

Comments
 (0)