[svn-r11475] Purpose:

Bug fix

Description:

In production builds, H5MM_malloc was undefined in H5AC.c


Solution:

Include H5MMprivate.h in H5AC.c, which defines H5MM_malloc() in
both debug and production modes.


Platforms tested:

h5committested, serial production build on Heping

Misc. update:
This commit is contained in:
John Mainzer 2005-09-28 17:00:55 -05:00
parent be9a23cac3
commit 6baed67905

View File

@ -61,6 +61,7 @@
#include "H5FDprivate.h" /* File drivers */
#include "H5FLprivate.h" /* Free Lists */
#include "H5Iprivate.h" /* IDs */
#include "H5MMprivate.h" /* Memory management */
#include "H5Pprivate.h" /* Property lists */
#ifdef H5_HAVE_FPHDF5