1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2013-05-17 15:55:42 -07:00
parent 856760644c
commit 8e55f9f834
3 changed files with 4 additions and 4 deletions

View file

@ -844,12 +844,12 @@ class PDOMCPPLinkage extends PDOMLinkage implements IIndexCPPBindingConstants {
if (binding instanceof IIndexBinding) {
IIndexBinding ib= (IIndexBinding) binding;
// don't adapt file local bindings from other fragments to this one.
// Don't adapt file local bindings from other fragments to this one.
if (ib.isFileLocal()) {
return null;
}
} else {
// skip unnamed namespaces
// Skip unnamed namespaces.
while (owner instanceof ICPPNamespace) {
char[] name= owner.getNameCharArray();
if (name.length > 0) {