Changeset 941 for trunk/src/emx/src/ld/symseg.h
- Timestamp:
- Jan 11, 2004, 1:03:49 AM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/src/ld/symseg.h
-
Property cvs2svn:cvs-rev
changed from
1.3
to1.4
r940 r941 123 123 TYPE_CODE_MEMBER, /* Member type */ 124 124 TYPE_CODE_METHOD, /* Method type */ 125 TYPE_CODE_REF ,/* C++ Reference types */125 TYPE_CODE_REF /* C++ Reference types */ 126 126 }; 127 127 … … 146 146 /* Indicates that this type is a virtual baseclass of another class, 147 147 i.e. that if this class is inherited more than once by another 148 class, only one set of member variables will be included. */ 148 class, only one set of member variables will be included. */ 149 149 #define TYPE_FLAG_VIA_VIRTUAL 2048 150 150 … … 168 168 Zero if no such pointer-to type is known yet. 169 169 The debugger may add the address of such a type 170 if it has to construct one later. */ 170 if it has to construct one later. */ 171 171 struct type *pointer_type; 172 172 /* C++: also need a reference type. */ 173 173 struct type *reference_type; 174 174 struct type **arg_types; 175 175 176 176 /* Type that is a function returning this type. 177 177 Zero if no such function type is known here. … … 289 289 types goes here. 290 290 Unused otherwise. 291 291 292 292 Contrary to all maxims of C style and common sense, the baseclasses 293 293 are indexed from 1 to N_BASECLASSES rather than 0 to N_BASECLASSES-1 … … 393 393 enum namespace 394 394 { 395 UNDEF_NAMESPACE, VAR_NAMESPACE, STRUCT_NAMESPACE, LABEL_NAMESPACE ,395 UNDEF_NAMESPACE, VAR_NAMESPACE, STRUCT_NAMESPACE, LABEL_NAMESPACE 396 396 }; 397 397 … … 464 464 }; 465 465 466 /* 466 /* 467 467 * Vectors of all partial symbols read in from file; actually declared 468 468 * and used in dbxread.c. -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.