mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
[GDI32]
[USER32] Fix release build. svn path=/trunk/; revision=68102
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user