mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Cosmetics.
This commit is contained in:
parent
5534c74d2f
commit
4cf3e277df
4 changed files with 8 additions and 11 deletions
|
@ -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
|
||||
* are made available under the terms of the Eclipse Public License v1.0
|
||||
* which accompanies this distribution, and is available at
|
||||
|
@ -109,8 +109,8 @@ public interface IScope {
|
|||
private final IASTTranslationUnit fTu;
|
||||
private final boolean fLookupPointIsName;
|
||||
private boolean fResolve= true;
|
||||
private boolean fPrefixLookup= false;
|
||||
private boolean fIgnorePointOfDeclaration= false;
|
||||
private boolean fPrefixLookup;
|
||||
private boolean fIgnorePointOfDeclaration;
|
||||
|
||||
public ScopeLookupData(IASTName name, boolean resolve, boolean prefixLookup) {
|
||||
if (name == null)
|
||||
|
|
|
@ -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
|
||||
* are made available under the terms of the Eclipse Public License v1.0
|
||||
* 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.
|
||||
* @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
|
||||
public ICPPASTArraySubscriptExpression copy();
|
||||
|
||||
|
|
|
@ -8,7 +8,6 @@
|
|||
* Contributors:
|
||||
* Markus Schorn - initial API and implementation
|
||||
*******************************************************************************/
|
||||
|
||||
package org.eclipse.cdt.core.dom.ast.cpp;
|
||||
|
||||
import org.eclipse.cdt.core.dom.ast.IASTExpression;
|
||||
|
@ -20,5 +19,4 @@ import org.eclipse.cdt.core.dom.ast.IASTExpression;
|
|||
* @since 5.5
|
||||
*/
|
||||
public interface ICPPASTExpression extends IASTExpression, ICPPASTInitializerClause {
|
||||
|
||||
}
|
||||
|
|
|
@ -24,7 +24,6 @@ public interface ICPPMethodSpecialization extends ICPPSpecialization, ICPPMethod
|
|||
/**
|
||||
* Similar to {@link ICPPFunction#getExceptionSpecification()} but a accepts a starting point
|
||||
* for template instantiation.
|
||||
* @since 5.5
|
||||
*/
|
||||
IType[] getExceptionSpecification(IASTNode point);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue