mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-27 02:10:55 +08:00
[svn-r11152] Purpose: Removed some compiler warnings
Description: Removed defined but unused variables. Platforms tested: Linux 2.4 (heping) IRIX64 with -n32 (modi4) Linux 2.4 w/PGI (colonelk)
This commit is contained in:
parent
fab172d704
commit
52f78a12d5
@ -37,7 +37,6 @@ using namespace H5;
|
||||
#include "h5cpputil.h" // C++ utilility header file
|
||||
|
||||
const string FILENAME("tattr.h5");
|
||||
const size_t ATTR_NAME_LEN = 16;
|
||||
const size_t ATTR_MAX_DIMS = 7;
|
||||
const string ATTR_TMP_NAME("temp_name");
|
||||
|
||||
@ -556,9 +555,7 @@ test_attr_compound_read(void)
|
||||
static void
|
||||
test_attr_scalar_write(void)
|
||||
{
|
||||
hsize_t dims1[] = {SPACE1_DIM1, SPACE1_DIM2, SPACE1_DIM3};
|
||||
|
||||
// Output message about test being performed
|
||||
// Output message about test being performed
|
||||
MESSAGE(5, ("Testing Basic Scalar Attribute Writing Functions\n"));
|
||||
|
||||
try {
|
||||
|
@ -65,7 +65,6 @@ unsigned space3_data=65;
|
||||
|
||||
/* Scalar dataset with compound datatype */
|
||||
const string SPACE4_NAME("Scalar2");
|
||||
const int SPACE4_RANK = 0;
|
||||
const string SPACE4_FIELDNAME1("c1");
|
||||
const string SPACE4_FIELDNAME2("u");
|
||||
const string SPACE4_FIELDNAME3("f");
|
||||
@ -137,6 +136,7 @@ test_h5s_basic(void)
|
||||
int ndims; // Number of dimensions
|
||||
hsize_t tdims[4]; // Dimension array to test with
|
||||
ndims = sid1.getSimpleExtentDims( tdims );
|
||||
verify_val(ndims, SPACE1_RANK, "DataSpace::getSimpleExtentDims", __LINE__, __FILE__);
|
||||
verify_val(HDmemcmp(tdims, dims1, SPACE1_RANK * sizeof(unsigned)), 0,
|
||||
"DataSpace::getSimpleExtentDims", __LINE__, __FILE__);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user