> sun's compiler (studio 10) doesnt properly implement those
standard-functions. i solved it here using wrapper-functions osg_strtof and osg_strtold, in which i make the #ifdef __sun distinction and accordingly use either the functions themselves or strtod and a cast in the sun case
Just discovered that wrapper-functions are not needed in this case. There is already a distinction being made, and if on __sgi or WIN32, atof is called instead of strtof. atof is also implemented in sun's library, so it can be fixed by just adding a || defined(__sun) in lines 804, 869, 994 of OSGBaseTypeTraits.h.
------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click _______________________________________________ Opensg-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/opensg-users
