Changeset 1228 in Sophya for trunk/SophyaLib/BaseTools
- Timestamp:
- Oct 12, 2000, 2:00:38 AM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/BaseTools/dvlist.cc
r1225 r1228 219 219 ValList::const_iterator it = mvlist.find(key); 220 220 if (it == mvlist.end()) return(def); 221 return( (complex<r_8>)((*it).second.elval) ); 221 #if defined(__GNUG__) 222 complex<r_8> z; 223 z = (*it).second.elval; 224 return(z); 225 #else 226 return( (complex<r_8>)(*it).second.elval ); 227 #endif 222 228 } 223 229
Note:
See TracChangeset
for help on using the changeset viewer.