[USER32]
Fix release build.

svn path=/trunk/; revision=68102
This commit is contained in:
Daniel Reimer 2015-06-10 12:04:51 +00:00
parent 971503da5d
commit 3aa5d0fc69
2 changed files with 9 additions and 0 deletions

View file

@ -519,6 +519,10 @@ _assert (
DbgRaiseAssertionFailure();
}
#if defined(_MSC_VER) && (DBG != 1)
// MSVC uses it's own in this case. Thus skipping it.
#else
double
__cdecl
atan2(
@ -529,6 +533,8 @@ atan2(
return 0.;
}
#endif
/******************************************************************************/
static

View file

@ -46,6 +46,9 @@ DWORD WINAPI GdiGetCodePage(HDC hdc);
#define assert(e) ((e) ? (void)0 : _font_assert(#e, __FILE__, __LINE__))
#else
#include <assert.h>
#endif
void _font_assert(const char *msg, const char *file, int line)