diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2012-10-10 03:32:21 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2012-10-10 03:32:21 (GMT) |
commit | f7e1da0cfb5d2916bfc1817a03a8557b1f3421a4 (patch) | |
tree | e92c876ca99f8f87d288a8b5e94e311374aa1c58 | |
parent | ac472bb111acbc4d8a02f48a7db2132969d690c4 (diff) | |
download | hdf5-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
-rw-r--r-- | c++/test/tattr.cpp | 2 |
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(); |