[svn-r7379] Purpose:
Code cleanup
Description:
Changed version #'s returned from H5Pget_version from 'int *' to
'unsigned *' since we are never going to be using negative version #'s... :-)
Platforms tested:
FreeBSD 4.8 (sleipnir)
too small to need h5committest
This commit is contained in:
@@ -34,7 +34,7 @@ FileCreatPropList::FileCreatPropList() : PropList( H5P_FILE_CREATE ) {}
|
||||
FileCreatPropList::FileCreatPropList( const FileCreatPropList& orig ) : PropList( orig ) {}
|
||||
|
||||
void FileCreatPropList::getVersion(
|
||||
int& boot, int& freelist, int& stab, int& shhdr ) const
|
||||
unsigned& boot, unsigned& freelist, unsigned& stab, unsigned& shhdr ) const
|
||||
{
|
||||
herr_t ret_value = H5Pget_version( id, &boot, &freelist, &stab, &shhdr );
|
||||
if( ret_value < 0 )
|
||||
|
||||
Reference in New Issue
Block a user