1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Fixes navigation for mactos defined in a file of an SDKs that does not contain declarations.

This commit is contained in:
Markus Schorn 2007-10-22 08:16:15 +00:00
parent 58150201b7
commit aa6dbbcd83

View file

@ -423,7 +423,7 @@ public class PDOMFile implements IIndexFragmentFile {
} }
public boolean hasNames() throws CoreException { public boolean hasNames() throws CoreException {
return getFirstName()!=null; return getFirstName()!=null || getFirstMacro() != null || getFirstInclude() != null;
} }
public void convertIncludersToUnresolved() throws CoreException { public void convertIncludersToUnresolved() throws CoreException {