mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-06 07:45:50 +02:00
Patch for Hoda Amer:
- Adjusting the visibility enumeration to match the parser's
This commit is contained in:
parent
92ac3395da
commit
c261e3177e
1 changed files with 2 additions and 2 deletions
|
@ -12,9 +12,9 @@ package org.eclipse.cdt.core.model;
|
||||||
*/
|
*/
|
||||||
public interface IMember extends IDeclaration {
|
public interface IMember extends IDeclaration {
|
||||||
|
|
||||||
static final int V_PUBLIC = 0;
|
static final int V_PRIVATE = 0;
|
||||||
static final int V_PROTECTED = 1;
|
static final int V_PROTECTED = 1;
|
||||||
static final int V_PRIVATE = 2;
|
static final int V_PUBLIC = 2;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the member's visibility
|
* Returns the member's visibility
|
||||||
|
|
Loading…
Add table
Reference in a new issue