Changeset 1106 for to-imperative/trunk/runtime/rf_short_int.ih
- Timestamp:
- Aug 6, 2003, 5:30:09 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
to-imperative/trunk/runtime/rf_short_int.ih
r838 r1106 15 15 using namespace rfrt; 16 16 17 inline ShortInt::ShortInt(intptr_t _n) :18 Term(type_ short_int)17 inline Int32::Int32(intptr_t _n) : 18 Term(type_int32) 19 19 { 20 20 int_data2 = _n; 21 21 } 22 22 23 inline intptr_t ShortInt::to_int() const23 inline intptr_t Int32::to_int() const 24 24 { 25 25 return int_data2; 26 26 } 27 27 28 inline size_t ShortInt::get_char_len() const28 inline size_t Int32::get_char_len() const 29 29 { 30 30 intptr_t n = int_data2;
Note: See TracChangeset
for help on using the changeset viewer.