diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2016-01-05 03:37:06 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2016-01-05 03:37:06 (GMT) |
commit | 4b90bb3317c39b347fd67dc753d70fe6808e4f2b (patch) | |
tree | 485779c7243f11748401a184bf8f0a9b6a675b9e /src | |
parent | 4c5bb2b8db3c16c9ec7a3f7f7eebf7fbeac8c48b (diff) | |
download | hdf5-4b90bb3317c39b347fd67dc753d70fe6808e4f2b.zip hdf5-4b90bb3317c39b347fd67dc753d70fe6808e4f2b.tar.gz hdf5-4b90bb3317c39b347fd67dc753d70fe6808e4f2b.tar.bz2 |
[svn-r28798] Description:
Add missing H5MMprivate.h header file
Tested on:
Linux/32 2.6.x (jam) w/serial
MacOSX/64 10.11.2 (amazon) w/serial & parallel
Diffstat (limited to 'src')
-rw-r--r-- | src/H5B2.c | 1 | ||||
-rw-r--r-- | src/H5B2hdr.c | 3 | ||||
-rw-r--r-- | src/H5B2int.c | 3 |
3 files changed, 5 insertions, 2 deletions
@@ -42,6 +42,7 @@ #include "H5private.h" /* Generic Functions */ #include "H5B2pkg.h" /* v2 B-trees */ #include "H5Eprivate.h" /* Error handling */ +#include "H5MMprivate.h" /* Memory management */ /****************/ diff --git a/src/H5B2hdr.c b/src/H5B2hdr.c index 036e81a..b6e0b26 100644 --- a/src/H5B2hdr.c +++ b/src/H5B2hdr.c @@ -38,7 +38,8 @@ #include "H5B2pkg.h" /* v2 B-trees */ #include "H5Eprivate.h" /* Error handling */ #include "H5MFprivate.h" /* File memory management */ -#include "H5VMprivate.h" /* Vectors and arrays */ +#include "H5MMprivate.h" /* Memory management */ +#include "H5VMprivate.h" /* Vectors and arrays */ /****************/ /* Local Macros */ diff --git a/src/H5B2int.c b/src/H5B2int.c index 105dad4..fe82604 100644 --- a/src/H5B2int.c +++ b/src/H5B2int.c @@ -38,7 +38,8 @@ #include "H5B2pkg.h" /* v2 B-trees */ #include "H5Eprivate.h" /* Error handling */ #include "H5MFprivate.h" /* File memory management */ -#include "H5VMprivate.h" /* Vectors and arrays */ +#include "H5MMprivate.h" /* Memory management */ +#include "H5VMprivate.h" /* Vectors and arrays */ /****************/ /* Local Macros */ |