summaryrefslogtreecommitdiffstats
path: root/perform
diff options
context:
space:
mode:
authorMuQun Yang <ymuqun@hdfgroup.org>2003-08-12 16:39:32 (GMT)
committerMuQun Yang <ymuqun@hdfgroup.org>2003-08-12 16:39:32 (GMT)
commita3c2612242ca547a0678295ff3342cdbb9c80d4c (patch)
treed95234de3a3cb22f5e78ef936e29b1fe3f16e636 /perform
parentfc5a04a87285f41f37db16d183fd5cb0ab287950 (diff)
downloadhdf5-a3c2612242ca547a0678295ff3342cdbb9c80d4c.zip
hdf5-a3c2612242ca547a0678295ff3342cdbb9c80d4c.tar.gz
hdf5-a3c2612242ca547a0678295ff3342cdbb9c80d4c.tar.bz2
[svn-r7350] Purpose:
Add a macro "elif" for the defination of haddr_t on windows. Description: There are no H5_SIZEOF_LONG_LONG for windows; instead H5_SIZEOF____int64 is used. So for the following macro ifdef-block: #if H5_SIZEOF_HADDR_T ==H5_SIZEOF_INT # define H5_PRINTF_HADDR_FMT "%u" #elif H5_SIZEOF_HADDR_T ==H5_SIZEOF_LONG # define H5_PRINTF_HADDR_FMT "%lu" #elif H5_SIZEOF_HADDR_T ==H5_SIZEOF_LONG_LONG # define H5_PRINTF_HADDR_FMT "%"H5_PRINTF_LL_WIDTH"u" #else # error "nothing appropriate for H5_PRINTF_HADDR_FMT" #endif The error will be generated. Solution: Add another "elif H5_SIZEOF_HADDR_T==H5_SIZEOF___INT64" after the last "elif" above so that it can generate the correct result on windows. Platforms tested: Since the change is so small, only test on windows and linux. Misc. update:
Diffstat (limited to 'perform')
0 files changed, 0 insertions, 0 deletions