From a0f0215c153b1cccdba0c299470e18e86d2e3a35 Mon Sep 17 00:00:00 2001 From: janwas Date: Sun, 19 Sep 2004 18:45:04 +0000 Subject: [PATCH] fixed debug_check_heap definition This was SVN commit r1167. --- source/lib/sysdep/sysdep.cpp | 2 +- source/lib/sysdep/win/win.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/lib/sysdep/sysdep.cpp b/source/lib/sysdep/sysdep.cpp index f7c863318e..7d67fb0069 100755 --- a/source/lib/sysdep/sysdep.cpp +++ b/source/lib/sysdep/sysdep.cpp @@ -36,7 +36,7 @@ void debug_out(const char* fmt, ...) } -inline void check_heap() +inline void debug_check_heap() { } diff --git a/source/lib/sysdep/win/win.cpp b/source/lib/sysdep/win/win.cpp index 74fa2d2795..81015ef87e 100755 --- a/source/lib/sysdep/win/win.cpp +++ b/source/lib/sysdep/win/win.cpp @@ -41,7 +41,7 @@ void sle(int x) // -inline void check_heap() +inline void debug_check_heap() { _heapchk(); }