Merge pull request #4535 from criemen/jump-to-def

C++: Extend jump-to-def support to template instantiations.
This commit is contained in:
Jonas Jensen
2020-10-27 08:16:57 +01:00
committed by GitHub
5 changed files with 14 additions and 14 deletions

View File

@@ -40,7 +40,9 @@ string issues(Link e) {
filepath1 = filepath2 and
not end1 < begin2 and
not begin1 > end2 and
e != e2
e != e2 and
not e.isFromTemplateInstantiation(_) and
not e2.isFromTemplateInstantiation(_)
) and
result = "overlaps another link"
}