1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-04 23:05:47 +02:00

Patch for Hoda Amer:

- Adjusting the visibility enumeration to match the parser's
This commit is contained in:
Doug Schaefer 2003-03-31 18:38:00 +00:00
parent 92ac3395da
commit c261e3177e

View file

@ -12,9 +12,9 @@ package org.eclipse.cdt.core.model;
*/
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_PRIVATE = 2;
static final int V_PUBLIC = 2;
/**
* Returns the member's visibility