summaryrefslogtreecommitdiff
path: root/src/common/memmgr.h
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2018-11-13 16:13:28 +0100
committerGitHub <noreply@github.com>2018-11-13 16:13:28 +0100
commit4991ce6ef03ce95f29c138421c011574e67d75e3 (patch)
treec75948f6829a9bb5686d57eb7eacf776aa3da0c6 /src/common/memmgr.h
parentcccaf912f3d3e7fb9a260c9baf2b91683b1ba0de (diff)
parentec2f7f8c40bca8ecef4a8269e87b12d0885d10bb (diff)
downloadhercules-4991ce6ef03ce95f29c138421c011574e67d75e3.tar.gz
hercules-4991ce6ef03ce95f29c138421c011574e67d75e3.tar.bz2
hercules-4991ce6ef03ce95f29c138421c011574e67d75e3.tar.xz
hercules-4991ce6ef03ce95f29c138421c011574e67d75e3.zip
Merge pull request #2319 from MishimaHaruna/remove-minicore
Remove minicore
Diffstat (limited to 'src/common/memmgr.h')
-rw-r--r--src/common/memmgr.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/common/memmgr.h b/src/common/memmgr.h
index 90c35f244..c7147cc5e 100644
--- a/src/common/memmgr.h
+++ b/src/common/memmgr.h
@@ -42,11 +42,6 @@
// Enable memory manager logging by default
#define LOG_MEMMGR
-// no logging for minicore
-#if defined(MINICORE) && defined(LOG_MEMMGR)
- #undef LOG_MEMMGR
-#endif
-
# define aMalloc(n) (iMalloc->malloc((n),ALC_MARK))
# define aCalloc(m,n) (iMalloc->calloc((m),(n),ALC_MARK))
# define aRealloc(p,n) (iMalloc->realloc((p),(n),ALC_MARK))