summaryrefslogtreecommitdiffstats
path: root/c++/test/tattr.cpp
diff options
context:
space:
mode:
authorBinh-Minh Ribler <bmribler@hdfgroup.org>2012-10-10 03:32:21 (GMT)
committerBinh-Minh Ribler <bmribler@hdfgroup.org>2012-10-10 03:32:21 (GMT)
commitf7e1da0cfb5d2916bfc1817a03a8557b1f3421a4 (patch)
treee92c876ca99f8f87d288a8b5e94e311374aa1c58 /c++/test/tattr.cpp
parentac472bb111acbc4d8a02f48a7db2132969d690c4 (diff)
downloadhdf5-f7e1da0cfb5d2916bfc1817a03a8557b1f3421a4.zip
hdf5-f7e1da0cfb5d2916bfc1817a03a8557b1f3421a4.tar.gz
hdf5-f7e1da0cfb5d2916bfc1817a03a8557b1f3421a4.tar.bz2
[svn-r22877] Description:
Changed uint to unsigned so that no hdf5-specific header file is needed. Platform tested: Linux/32 2.6 (jam) - very minor
Diffstat (limited to 'c++/test/tattr.cpp')
-rw-r--r--c++/test/tattr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/c++/test/tattr.cpp b/c++/test/tattr.cpp
index 6f7674d..100e725 100644
--- a/c++/test/tattr.cpp
+++ b/c++/test/tattr.cpp
@@ -985,7 +985,7 @@ static void test_attr_delete()
verify_val(num_attrs, 1, "H5File::getNumAttrs", __LINE__, __FILE__);
// Verify the name of the only file attribute left
- Attribute fattr = fid1.openAttribute((uint)0);
+ Attribute fattr = fid1.openAttribute((unsigned)0);
H5std_string attr_name = fattr.getName();
verify_val(attr_name, FATTR1_NAME, "Attribute::getName", __LINE__, __FILE__);
fattr.close();