diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2013-09-30 22:15:38 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2013-09-30 22:15:38 (GMT) |
commit | cf8469d94967865a8c188e78fc1e0a59f1734147 (patch) | |
tree | c655f3782ef025a3372255c87e4c7e09c46af031 /c++ | |
parent | bb084334b8603d3f78cf7294c7c7521c6bc315bb (diff) | |
download | hdf5-cf8469d94967865a8c188e78fc1e0a59f1734147.zip hdf5-cf8469d94967865a8c188e78fc1e0a59f1734147.tar.gz hdf5-cf8469d94967865a8c188e78fc1e0a59f1734147.tar.bz2 |
[svn-r24233] Description:
Replaced an uint with unsigned to please Windows.
Platforms tested:
Linux/32 2.6 (jam) - very minor
Diffstat (limited to 'c++')
-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 3339bb3..8e2d7ee 100644 --- a/c++/test/tattr.cpp +++ b/c++/test/tattr.cpp @@ -1005,7 +1005,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(); |