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 2012-08-14 16:16:58 -07:00
parent 5534c74d2f
commit 4cf3e277df
4 changed files with 8 additions and 11 deletions

View file

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Copyright (c) 2004, 2010 IBM Corporation and others. * Copyright (c) 2004, 2012 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials * All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0 * are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at * which accompanies this distribution, and is available at
@ -109,8 +109,8 @@ public interface IScope {
private final IASTTranslationUnit fTu; private final IASTTranslationUnit fTu;
private final boolean fLookupPointIsName; private final boolean fLookupPointIsName;
private boolean fResolve= true; private boolean fResolve= true;
private boolean fPrefixLookup= false; private boolean fPrefixLookup;
private boolean fIgnorePointOfDeclaration= false; private boolean fIgnorePointOfDeclaration;
public ScopeLookupData(IASTName name, boolean resolve, boolean prefixLookup) { public ScopeLookupData(IASTName name, boolean resolve, boolean prefixLookup) {
if (name == null) if (name == null)

View file

@ -1,5 +1,5 @@
/******************************************************************************* /*******************************************************************************
* Copyright (c) 2009, 2011 IBM Corporation and others. * Copyright (c) 2009, 2012 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials * All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0 * are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at * which accompanies this distribution, and is available at
@ -19,8 +19,8 @@ import org.eclipse.cdt.core.dom.ast.IASTImplicitNameOwner;
* @noextend This interface is not intended to be extended by clients. * @noextend This interface is not intended to be extended by clients.
* @noimplement This interface is not intended to be implemented by clients. * @noimplement This interface is not intended to be implemented by clients.
*/ */
public interface ICPPASTArraySubscriptExpression extends IASTArraySubscriptExpression, ICPPASTExpression, IASTImplicitNameOwner { public interface ICPPASTArraySubscriptExpression
extends IASTArraySubscriptExpression, ICPPASTExpression, IASTImplicitNameOwner {
@Override @Override
public ICPPASTArraySubscriptExpression copy(); public ICPPASTArraySubscriptExpression copy();

View file

@ -8,7 +8,6 @@
* Contributors: * Contributors:
* Markus Schorn - initial API and implementation * Markus Schorn - initial API and implementation
*******************************************************************************/ *******************************************************************************/
package org.eclipse.cdt.core.dom.ast.cpp; package org.eclipse.cdt.core.dom.ast.cpp;
import org.eclipse.cdt.core.dom.ast.IASTExpression; import org.eclipse.cdt.core.dom.ast.IASTExpression;
@ -20,5 +19,4 @@ import org.eclipse.cdt.core.dom.ast.IASTExpression;
* @since 5.5 * @since 5.5
*/ */
public interface ICPPASTExpression extends IASTExpression, ICPPASTInitializerClause { public interface ICPPASTExpression extends IASTExpression, ICPPASTInitializerClause {
} }

View file

@ -24,7 +24,6 @@ public interface ICPPMethodSpecialization extends ICPPSpecialization, ICPPMethod
/** /**
* Similar to {@link ICPPFunction#getExceptionSpecification()} but a accepts a starting point * Similar to {@link ICPPFunction#getExceptionSpecification()} but a accepts a starting point
* for template instantiation. * for template instantiation.
* @since 5.5
*/ */
IType[] getExceptionSpecification(IASTNode point); IType[] getExceptionSpecification(IASTNode point);
} }