================
@@ -494,7 +494,7 @@ genReferencesBlock(const std::vector<Reference> &References,
 static std::unique_ptr<TagNode>
 writeFileDefinition(const Location &L,
                     std::optional<StringRef> RepositoryUrl = std::nullopt) {
-  if (!L.IsFileInRootDir && !RepositoryUrl)
+  if (!L.IsFileInRootDir || !RepositoryUrl)
----------------
hulxv wrote:

> This logic isn't correct, and happens to prevent us from effectively using 
> the --repository= string anywhere, as evidenced by our tests.

The whole next logic depends on `RepositoryUrl`. how can we continue using it 
if it's not passed? 

> An alternative would be to change the deref of the option to use 
> .value_or("") instead.

If `RepositoryUrl` is not passed, shouldn't we use `file://` protocol as I 
think? In this case, the `FileUrl` should be something like 
`file:///path/to/file`, not just an empty string

https://github.com/llvm/llvm-project/pull/131698
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to