mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
[GDI32]
[USER32] Fix release build. svn path=/trunk/; revision=68102
This commit is contained in:
parent
971503da5d
commit
3aa5d0fc69
2 changed files with 9 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue