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

Cosmetics.

This commit is contained in:
Sergey Prigogin 2011-03-08 00:13:32 +00:00
parent 77c42e5efb
commit 42d13c4bd1

View file

@ -687,7 +687,7 @@ public class CIndex implements IIndex {
} }
IIndexBinding[] compBinding = getCompositesFactory(ILinkage.CPP_LINKAGE_ID).getCompositeBindings(preresult); IIndexBinding[] compBinding = getCompositesFactory(ILinkage.CPP_LINKAGE_ID).getCompositeBindings(preresult);
IIndexScope[] result = new IIndexScope[compBinding.length]; IIndexScope[] result = new IIndexScope[compBinding.length];
for(int i = 0; i < result.length; i++) { for (int i = 0; i < result.length; i++) {
result[i]= (IIndexScope) ((ICPPNamespace) compBinding[i]).getNamespaceScope(); result[i]= (IIndexScope) ((ICPPNamespace) compBinding[i]).getNamespaceScope();
} }
return result; return result;