mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-07-04 05:55:47 -07:00
inline in the hopes the compiler will leave out the call (so call stack isn't polluted)
This was SVN commit r879.
This commit is contained in:
parent
fc77eadd9e
commit
85b1f26f65
1 changed files with 2 additions and 1 deletions
|
|
@ -39,12 +39,13 @@ void sle(int x)
|
|||
//
|
||||
|
||||
|
||||
void check_heap()
|
||||
inline void check_heap()
|
||||
{
|
||||
_heapchk();
|
||||
}
|
||||
|
||||
|
||||
|
||||
void display_msg(const char* caption, const char* msg)
|
||||
{
|
||||
MessageBoxA(0, msg, caption, MB_ICONEXCLAMATION);
|
||||
|
|
|
|||
Loading…
Reference in a new issue