summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2006-03-22 18:50:19 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2006-03-22 18:50:19 (GMT)
commit5135181d31d78595e074d4774141c40442ff8508 (patch)
treeb261341008621c4f65b46ac78775ae1bd13ed679 /src
parent6c8a082596dec312ba47fe74a41e05d23729277d (diff)
downloadhdf5-5135181d31d78595e074d4774141c40442ff8508.zip
hdf5-5135181d31d78595e074d4774141c40442ff8508.tar.gz
hdf5-5135181d31d78595e074d4774141c40442ff8508.tar.bz2
[svn-r12132] Purpose:
Code cleanup Description: Add H5E header to this header, to make certain that the errors in the "inline" routines are handled correctly. Platforms tested: FreeBSD 4.11 (sleipnir) Linux 2.4 (chicago) Mac OSX (amazon)
Diffstat (limited to 'src')
-rw-r--r--src/H5Vprivate.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/H5Vprivate.h b/src/H5Vprivate.h
index 942381d..7e2473a 100644
--- a/src/H5Vprivate.h
+++ b/src/H5Vprivate.h
@@ -19,7 +19,9 @@
#ifndef H5Vprivate_H
#define H5Vprivate_H
-#include "H5private.h"
+/* Private headers needed by this file */
+#include "H5private.h" /* Generic Functions */
+#include "H5Eprivate.h" /* Error handling */
/* Vector comparison functions like Fortran66 comparison operators */
#define H5V_vector_eq_s(N,V1,V2) (H5V_vector_cmp_s (N, V1, V2)==0)