summaryrefslogtreecommitdiffstats
path: root/c++/test/tfilter.cpp
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2014-04-12 02:47:07 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2014-04-12 02:47:07 (GMT)
commitf61bc97180e88c6081c7cc9a420b7e9540bfd1a0 (patch)
tree272d6803208c796132836d4fb22cebfa09f8da88 /c++/test/tfilter.cpp
parentadff7e81bd0013af6f2e468e1eb0b9622897ab20 (diff)
downloadhdf5-f61bc97180e88c6081c7cc9a420b7e9540bfd1a0.zip
hdf5-f61bc97180e88c6081c7cc9a420b7e9540bfd1a0.tar.gz
hdf5-f61bc97180e88c6081c7cc9a420b7e9540bfd1a0.tar.bz2
[svn-r25023] Description:
- Added wrappers to H5Object for H5Iget_name() to get object's name ssize_t getObjName(char *obj_name, size_t buf_size = 0) const; ssize_t getObjName(H5std_string& obj_name, size_t len = 0) const; H5std_string getObjName() const; - Added tests tobject.cpp - Added to various cleanup_* functions in tests to remove generated files - Added an overload H5I_type_t getHDFObjType() to get object's type (merge from trunk-24969) Platforms tested: Linux/ppc64 (ostrich) Linux/32 2.6 (jam) SunOS 5.11 (emu) with gmake
Diffstat (limited to 'c++/test/tfilter.cpp')
-rw-r--r--c++/test/tfilter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/c++/test/tfilter.cpp b/c++/test/tfilter.cpp
index 257e4be..854c7bb 100644
--- a/c++/test/tfilter.cpp
+++ b/c++/test/tfilter.cpp
@@ -165,7 +165,7 @@ static void test_null_filter()
const H5std_string DSET_SZIP_NAME("szipped dataset");
-void test_szip_filter(H5File& file1)
+static void test_szip_filter(H5File& file1)
{
#ifdef H5_HAVE_FILTER_SZIP
int points[DSET_DIM1][DSET_DIM2], check[DSET_DIM1][DSET_DIM2];