Changeset 1228 in Sophya


Ignore:
Timestamp:
Oct 12, 2000, 2:00:38 AM (25 years ago)
Author:
ansari
Message:

Compil sous g++ , Reza 12/10/2000

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/BaseTools/dvlist.cc

    r1225 r1228  
    219219ValList::const_iterator it = mvlist.find(key);
    220220if (it == mvlist.end())  return(def);
    221 return( (complex<r_8>)((*it).second.elval) );
     221#if defined(__GNUG__)
     222complex<r_8> z;
     223z = (*it).second.elval;
     224return(z);
     225#else
     226return( (complex<r_8>)(*it).second.elval );
     227#endif
    222228}
    223229
Note: See TracChangeset for help on using the changeset viewer.