1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-24 16:20:05 +02:00

Fix release build when using VS2013.

Should probably just get rid of this file now and will probably
do so when I delete the VS2008 project files.
This commit is contained in:
lllucius 2014-10-07 04:18:22 +00:00
parent 80c216cccf
commit 4f81d188f0

View File

@ -64,7 +64,7 @@
/* Win32 doesn't seem to have these functions. /* Win32 doesn't seem to have these functions.
** Therefore implement inline versions of these functions here. ** Therefore implement inline versions of these functions here.
*/ */
#if (_MSC_VER == 1500)
__inline long int __inline long int
lrint (double flt) lrint (double flt)
{ int intgr; { int intgr;
@ -112,7 +112,7 @@
return intgr ; return intgr ;
} }
#endif
#else #else
/* dmazzoni: modified these to do a proper rounding, even though /* dmazzoni: modified these to do a proper rounding, even though