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 05:50:23 +00:00
parent d2047f3306
commit 6f33dd512d

View file

@ -6,8 +6,8 @@
* http://www.eclipse.org/legal/epl-v10.html * http://www.eclipse.org/legal/epl-v10.html
* *
* Contributors: * Contributors:
* Symbian - Initial API and implementation * Symbian - Initial API and implementation
* Markus Schorn (Wind River Systems) * Markus Schorn (Wind River Systems)
*******************************************************************************/ *******************************************************************************/
package org.eclipse.cdt.internal.core.pdom.dom.cpp; package org.eclipse.cdt.internal.core.pdom.dom.cpp;
@ -46,7 +46,7 @@ public abstract class PDOMCPPBinding extends PDOMBinding implements ICPPBinding
PDOMNode node = this; PDOMNode node = this;
while (node != null) { while (node != null) {
if (node instanceof PDOMBinding && !(node instanceof ICPPTemplateInstance)) { if (node instanceof PDOMBinding && !(node instanceof ICPPTemplateInstance)) {
result.add(0, ((PDOMBinding)node).getName().toCharArray()); result.add(0, ((PDOMBinding) node).getName().toCharArray());
} }
node = node.getParentNode(); node = node.getParentNode();
} }