1
0
Fork 0
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:
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 { 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