From: Markus R. <rol...@us...> - 2007-02-09 20:12:11
|
Update of /cvsroot/simspark/simspark/spark/salt In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv10736/salt Modified Files: Tag: WIN32 gmath.h salt.vcproj Log Message: Index: salt.vcproj =================================================================== RCS file: /cvsroot/simspark/simspark/spark/salt/Attic/salt.vcproj,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -d -r1.1.2.1 -r1.1.2.2 *** salt.vcproj 9 Feb 2007 16:22:24 -0000 1.1.2.1 --- salt.vcproj 9 Feb 2007 20:12:08 -0000 1.1.2.2 *************** *** 103,107 **** <Tool Name="VCCLCompilerTool" ! PreprocessorDefinitions="WIN32;NDEBUG;_LIB" RuntimeLibrary="2" UsePrecompiledHeader="0" --- 103,107 ---- <Tool Name="VCCLCompilerTool" ! PreprocessorDefinitions="WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_DEPRECATE;HAVE_CONFIG_H" RuntimeLibrary="2" UsePrecompiledHeader="0" Index: gmath.h =================================================================== RCS file: /cvsroot/simspark/simspark/spark/salt/gmath.h,v retrieving revision 1.2.2.1 retrieving revision 1.2.2.2 diff -C2 -d -r1.2.2.1 -r1.2.2.2 *** gmath.h 9 Feb 2007 16:09:52 -0000 1.2.2.1 --- gmath.h 9 Feb 2007 20:12:08 -0000 1.2.2.2 *************** *** 161,165 **** f_inline TYPE gDegToRad(TYPE deg) { ! return (static_cast<TYPE>(deg)) * (M_PI / 180.0); } --- 161,165 ---- f_inline TYPE gDegToRad(TYPE deg) { ! return (static_cast<TYPE>(deg * (M_PI / 180.0))); } |