Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergey Prigogin2012-10-16 21:54:42 +0000
committerSergey Prigogin2012-10-16 21:54:42 +0000
commitc05ea1bf76b558cb9d7c61153420315ea7213a1d (patch)
tree962d8a504b8d7eb27d7c1b522f66c8e58400a425
parentd76357807964c6f939870bb07f553b10ded19d00 (diff)
downloadorg.eclipse.cdt-c05ea1bf76b558cb9d7c61153420315ea7213a1d.tar.gz
org.eclipse.cdt-c05ea1bf76b558cb9d7c61153420315ea7213a1d.tar.xz
org.eclipse.cdt-c05ea1bf76b558cb9d7c61153420315ea7213a1d.zip
Cosmetics.
-rw-r--r--core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/ITypeMarshalBuffer.java24
1 files changed, 12 insertions, 12 deletions
diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/ITypeMarshalBuffer.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/ITypeMarshalBuffer.java
index 5198b0ac12c..8b465ba06c9 100644
--- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/ITypeMarshalBuffer.java
+++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/dom/parser/ITypeMarshalBuffer.java
@@ -20,18 +20,18 @@ import org.eclipse.core.runtime.CoreException;
* Buffer for marshalling and unmarshalling types.
*/
public interface ITypeMarshalBuffer {
- final static byte BASIC_TYPE= 1;
- final static byte POINTER_TYPE= 2;
- final static byte ARRAY_TYPE= 3;
- final static byte CVQUALIFIER_TYPE= 4;
- final static byte FUNCTION_TYPE= 5;
- final static byte REFERENCE_TYPE= 6;
- final static byte POINTER_TO_MEMBER_TYPE= 7;
- final static byte PACK_EXPANSION_TYPE= 8;
- final static byte PROBLEM_TYPE= 9;
- final static byte VALUE= 10;
- final static byte DEPENDENT_EXPRESSION_TYPE= 11;
- final static byte UNKNOWN_MEMBER= 12;
+ final static byte BASIC_TYPE= 1;
+ final static byte POINTER_TYPE= 2;
+ final static byte ARRAY_TYPE= 3;
+ final static byte CVQUALIFIER_TYPE= 4;
+ final static byte FUNCTION_TYPE= 5;
+ final static byte REFERENCE_TYPE= 6;
+ final static byte POINTER_TO_MEMBER_TYPE= 7;
+ final static byte PACK_EXPANSION_TYPE= 8;
+ final static byte PROBLEM_TYPE= 9;
+ final static byte VALUE= 10;
+ final static byte DEPENDENT_EXPRESSION_TYPE= 11;
+ final static byte UNKNOWN_MEMBER= 12;
final static byte UNKNOWN_MEMBER_CLASS_INSTANCE= 13;
final static byte DEFERRED_CLASS_INSTANCE= 14;

Back to the top