Changeset 2327 in Sophya for trunk/SophyaLib/BaseTools
- Timestamp:
- Feb 14, 2003, 4:06:28 PM (23 years ago)
- Location:
- trunk/SophyaLib/BaseTools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/BaseTools/datatype.cc
r1238 r2327 12 12 { 13 13 } 14 14 #if defined(__SGICC__) 15 template <class uint_1> 16 string DataTypeInfo<uint_1>::getTypeName() { return("uint_1"); } 17 template <class uint_2> 18 string DataTypeInfo<uint_2>::getTypeName() { return("uint_2"); } 19 template <class int_2> 20 string DataTypeInfo<int_2>::getTypeName() { return("int_2"); } 21 template <class int_4> 22 string DataTypeInfo<int_4>::getTypeName() { return("int_4"); } 23 template <class int_8> 24 string DataTypeInfo<int_8>::getTypeName() { return("int_8"); } 25 template <class uint_4> 26 string DataTypeInfo<uint_4>::getTypeName() { return("uint_4"); } 27 template <class uint_8> 28 string DataTypeInfo<uint_8>::getTypeName() { return("uint_8"); } 29 template <class r_4> 30 string DataTypeInfo<r_4>::getTypeName() { return("r_4"); } 31 template <class r_8> 32 string DataTypeInfo<r_8>::getTypeName() { return("r_8"); } 33 template <class complex<r_4> > 34 string DataTypeInfo< complex<r_4> >::getTypeName() { return(" complex<r_4> "); } 35 template <class complex<r_8> > 36 string DataTypeInfo< complex<r_8> >::getTypeName() { return(" complex<r_8> "); } 37 #else 15 38 string DataTypeInfo<uint_1>::getTypeName() { return("uint_1"); } 16 39 string DataTypeInfo<uint_2>::getTypeName() { return("uint_2"); } … … 24 47 string DataTypeInfo< complex<r_4> >::getTypeName() { return(" complex<r_4> "); } 25 48 string DataTypeInfo< complex<r_8> >::getTypeName() { return(" complex<r_8> "); } 26 49 #endif 27 50 28 51 -
trunk/SophyaLib/BaseTools/dvlist.cc
r2146 r2327 475 475 476 476 /* --Methode-- */ 477 #if defined(__SGICC__) 478 template <class DVList> 479 #endif 477 480 void ObjFileIO<DVList>::WriteSelf(POutPersist& s) const 478 481 { … … 526 529 527 530 /* --Methode-- */ 531 #if defined(__SGICC__) 532 template <class DVList> 533 #endif 528 534 void ObjFileIO<DVList>::ReadSelf(PInPersist& s) 529 535 {
Note:
See TracChangeset
for help on using the changeset viewer.