1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-22 14:12:10 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2014-05-30 18:18:17 -07:00
parent 2cada0fe18
commit 27c6327cdf

View file

@ -1037,7 +1037,7 @@ public class BindingClassifier {
if (type instanceof IBinding && CharArrayUtils.equals(((IBinding) type).getNameCharArray(), "hash")) { //$NON-NLS-1$ if (type instanceof IBinding && CharArrayUtils.equals(((IBinding) type).getNameCharArray(), "hash")) { //$NON-NLS-1$
IBinding owner = ((IBinding) type).getOwner(); IBinding owner = ((IBinding) type).getOwner();
if (owner instanceof ICPPNamespace && if (owner instanceof ICPPNamespace &&
(CharArrayUtils.equals(owner.getNameCharArray(), CPPVisitor.STD) || (CharArrayUtils.equals(owner.getNameCharArray(), STD) ||
CharArrayUtils.equals(owner.getNameCharArray(), "__gnu_cxx"))) //$NON-NLS-1$ CharArrayUtils.equals(owner.getNameCharArray(), "__gnu_cxx"))) //$NON-NLS-1$
addRequiredBindings((IBinding) type, queue); addRequiredBindings((IBinding) type, queue);
} }