diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-01-22 13:59:28 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-01-22 13:59:28 (GMT) |
commit | a2f274ec459ce1282380cdf63f58b4e4c03c1751 (patch) | |
tree | 017b9b3d93810e20dc4ddc588916fc3ccbbba59b | |
parent | cfb095ae9ce9d59eb5fbf407d60b5308fef67ba5 (diff) | |
download | hdf5-a2f274ec459ce1282380cdf63f58b4e4c03c1751.zip hdf5-a2f274ec459ce1282380cdf63f58b4e4c03c1751.tar.gz hdf5-a2f274ec459ce1282380cdf63f58b4e4c03c1751.tar.bz2 |
[svn-r9859] Purpose:
Code cleanup
Description:
Clean up a few rements from the Pablo removal
Platforms tested:
None, very minor
-rw-r--r-- | src/H5.c | 3 | ||||
-rw-r--r-- | src/H5AC.c | 3 | ||||
-rw-r--r-- | src/H5B.c | 3 | ||||
-rw-r--r-- | src/H5C.c | 3 | ||||
-rw-r--r-- | src/H5D.c | 3 | ||||
-rw-r--r-- | src/H5Dcompact.c | 3 | ||||
-rw-r--r-- | src/H5Dcontig.c | 3 | ||||
-rw-r--r-- | src/H5Defl.c | 3 | ||||
-rw-r--r-- | src/H5Dio.c | 3 | ||||
-rw-r--r-- | src/H5private.h | 4 | ||||
-rwxr-xr-x | src/hdf5.lnt | 2 |
11 files changed, 2 insertions, 31 deletions
@@ -14,9 +14,6 @@ #define H5I_PACKAGE /*suppress error about including H5Ipkg */ -/* Pablo information */ -/* (Put before include files to avoid problems with inline functions) */ - #include "H5private.h" /* Generic Functions */ #include "H5Bprivate.h" /* B-link trees */ #include "H5Dprivate.h" /* Datasets */ @@ -47,9 +47,6 @@ /* Interface initialization */ #define H5_INTERFACE_INIT_FUNC H5AC_init_interface -/* Pablo information */ -/* (Put before include files to avoid problems with inline functions) */ - #include "H5private.h" /* Generic Functions */ #include "H5ACprivate.h" /* Metadata cache */ #include "H5Dprivate.h" /* Dataset functions */ @@ -100,9 +100,6 @@ #define H5B_PACKAGE /*suppress error about including H5Bpkg */ #define H5F_PACKAGE /*suppress error about including H5Fpkg */ -/* Pablo information */ -/* (Put before include files to avoid problems with inline functions) */ - /* private headers */ #include "H5private.h" /* Generic Functions */ #include "H5ACprivate.h" /* Metadata cache */ @@ -83,9 +83,6 @@ #define H5F_PACKAGE /*suppress error about including H5Fpkg */ -/* Pablo information */ -/* (Put before include files to avoid problems with inline functions) */ - #include "H5private.h" /* Generic Functions */ #include "H5Cprivate.h" /* Cache */ #include "H5Dprivate.h" /* Dataset functions */ @@ -17,9 +17,6 @@ /* Interface initialization */ #define H5_INTERFACE_INIT_FUNC H5D_init_interface -/* Pablo information */ -/* (Put before include files to avoid problems with inline functions) */ - #include "H5private.h" /* Generic Functions */ #include "H5Dpkg.h" /* Datasets */ #include "H5Eprivate.h" /* Error handling */ diff --git a/src/H5Dcompact.c b/src/H5Dcompact.c index 3ce7caf..a3048b3 100644 --- a/src/H5Dcompact.c +++ b/src/H5Dcompact.c @@ -22,9 +22,6 @@ #define H5D_PACKAGE /*suppress error about including H5Dpkg */ -/* Pablo information */ -/* (Put before include files to avoid problems with inline functions) */ - #include "H5private.h" /* Generic Functions */ #include "H5Dpkg.h" /* Dataset functions */ #include "H5Eprivate.h" /* Error handling */ diff --git a/src/H5Dcontig.c b/src/H5Dcontig.c index 7c8b553..d03c597 100644 --- a/src/H5Dcontig.c +++ b/src/H5Dcontig.c @@ -24,9 +24,6 @@ #define H5D_PACKAGE /*suppress error about including H5Dpkg */ -/* Pablo information */ -/* (Put before include files to avoid problems with inline functions) */ - #include "H5private.h" /* Generic Functions */ #include "H5Dpkg.h" /* Dataset functions */ #include "H5Eprivate.h" /* Error handling */ diff --git a/src/H5Defl.c b/src/H5Defl.c index adf5124..4e1c601 100644 --- a/src/H5Defl.c +++ b/src/H5Defl.c @@ -19,9 +19,6 @@ #define H5D_PACKAGE /*suppress error about including H5Dpkg */ -/* Pablo information */ -/* (Put before include files to avoid problems with inline functions) */ - #include "H5private.h" /* Generic Functions */ #include "H5Dpkg.h" /* Datasets */ #include "H5Eprivate.h" /* Error handling */ diff --git a/src/H5Dio.c b/src/H5Dio.c index 6616483..2c60a17 100644 --- a/src/H5Dio.c +++ b/src/H5Dio.c @@ -14,9 +14,6 @@ #define H5D_PACKAGE /*suppress error about including H5Dpkg */ -/* Pablo information */ -/* (Put before include files to avoid problems with inline functions) */ - #include "H5private.h" /* Generic Functions */ #include "H5Dpkg.h" /* Dataset functions */ #include "H5Eprivate.h" /* Error handling */ diff --git a/src/H5private.h b/src/H5private.h index 2acdf6c..2b0e9e7 100644 --- a/src/H5private.h +++ b/src/H5private.h @@ -1135,9 +1135,7 @@ static herr_t H5_INTERFACE_INIT_FUNC(void); assert(asrt); \ \ /* Check function name */ \ - H5_CHECK_FUNCNAME(func_name); \ - \ - /* Start tracing */ \ + H5_CHECK_FUNCNAME(func_name); #define FUNC_ENTER_COMMON(func_name,asrt) \ static const char FUNC[]=#func_name; \ diff --git a/src/hdf5.lnt b/src/hdf5.lnt index 770b5a7..b67abc0 100755 --- a/src/hdf5.lnt +++ b/src/hdf5.lnt @@ -89,7 +89,7 @@ H5Zszip.c The following files have had their FUNC_ENTER, FUNC_LEAVE & HGOTO* - macros cleaned up and the PABLO_MASK adjusted, but have not been linted + macros cleaned up, but have not been linted due to their dependencies on features that we don't support on Windows: H5FDfphdf5.c H5FDgass.c |