| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
Reverted overlong-strings warning that gives jam issues.
|
| |
|
| |
|
| |
|
|
|
|
| |
messy diff).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Reduce gratuitous casts---e.g., (size_t)1.
Use the right format string for a pointer.
In the H5C sanity checks, change a "size increase" variable from ssize_t
(too narrow) to int64_t (wide enough).
Parenthesize every appearance of `storage` in the macro
`H5D_CHUNK_STORAGE_INDEX_CHK(storage)` so that you can pass in an
expression like &sc and it works properly.
Disallow re-assignment of the `dset` parameter to H5D__chunk_init()
because it helped assure me that it's safe to replace the repeating
expression `&dset->shared->layout.storage.u.chunk` with `sc` throughout.
Replace lengthy expressions such as
`&dset->shared->layout.storage.u.chunk` with `sc` throughout several
functions in H5Dchunk.c ISTR that the compiler warned that `sc` was
declared but unused in a couple of functions, and then I found that `sc`
could be used in many places. Maybe the disused `sc` appeared because a
bunch of code was copied and pasted, I don't know. Anyway, it's a lot
tighter code now that I use `sc`.
In H5D__chunk_update_old_edge_chunks() and H5D__chunk_delete()
I actually expand `sc` and another temporary variable, `pline`,
because they're used only in !defined(NDEBUG) code. This squashes
unused-variable warnings in the defined(NDEBUG) configuration.
Don't drop the `volatile` qualification with a cast in
tools/src/h5import/h5import.c.
|
|
|
|
| |
This was a manual cherry pick.
|
| |
|
|\
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
hdf5_1_10
* commit '68adfb86d056af222ab80c349c56e0bd1d183f09':
Merge pull request #2537 in HDFFV/hdf5 from ~DYOUNG/werror:fix-werrors to develop
Move ADD_H5_FLAGS macro from *CompilerFlags.cmake files to config/cmake_ext_mod/HDFMacros.cmake for common use.
Restrict errors to gcc 4.8 and above.
Fix NoFilter build
TRILAB-244 separate CXX warnings and errors from C
Don't add general warnings flags for unsupported old versions of gcc and g++ (older than gcc/g++ 4.2). Correct gnu-cxxflags to determine warnings flags to be added based on C++ compiler version instead of C compiler version.
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
develop
* commit 'd16eb45d536bd13ca3cf1b0bdc76c58d95d13f17':
For compatibility with non-C99 Visual Studio versions, use "%" PRIuMAX instead of "%ju".
Fix `test/swmr_sparse_reader.c:118:77: error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast]` and `test/snapshots-hdf5/current/test/swmr_sparse_reader.c:129:100: error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast]`.
Fix `src/H5FDdirect.c:1346:5: error: ISO C90 forbids mixed declarations and code [-Werror=declaration-after-statement]`.
|
|/
|
|
| |
Update version to 1.10.7-1
|
| |
|
| |
|
|\
| |
| |
| |
| |
| |
| | |
~VCHOI/my_third_fork:bugfix/110_dtype_close_on_error to hdf5_1_10
* commit '665b71f94ec9ca81360c96867a1df5882b2ab19c':
A fix in the cleaning up code for datatype when datatype initialization via H5D__init_type() fails. The code to fix the problem is the same as what is done in H5D__open_oid().
|
| |
| |
| |
| |
| |
| | |
H5D__init_type() fails.
The code to fix the problem is the same as what is done in H5D__open_oid().
|
| |
| |
| |
| | |
Single source, config files, for warnings for both autotools and CMake.
Update CMake libraries, tools, tests to use correct flags.
|
|\ \
| |/
| |
| |
| |
| |
| | |
* commit '68a892f3f2eb6601b6254ff90c165c3b6412b97a':
Remove return statement from void function test_reference_sel_none().
Somehow missed in committing this file for the fix submitted previously.
Fix for HDFFV-11067:incorrect # of selected elements returned from region reference. The H5S_sel_none->deserialize callback should be called for H5S_SEL_NONE selection type.
|
| | |
|
|/ |
|
|\
| |
| |
| |
| |
| |
| | |
~VCHOI/my_third_fork:bugfix/v110_seg_fault_sel_compat to hdf5_1_10
* commit 'f33bb733be2da42672b4b0264cd4c6318ba35e9a':
Fix issues when deserializing point/all/none selection with version beyond the library's supported version: (1) Verify the decoded version before proceeding further with deserialization (2) Close the dataspace if errors occurred after opening the dataspace
|
| |
| |
| |
| |
| |
| |
| | |
the library's supported version:
(1) Verify the decoded version before proceeding further with deserialization
(2) Close the dataspace if errors occurred after opening the dataspace
|
|/
|
|
| |
test failures. Fixes HDFFV-11056.
|
| |
|
| |
|
|\
| |
| |
| | |
hdf5_1_10
|
| |
| |
| |
| | |
Fixes HDFFV-10945.
|
| | |
|
| | |
|
|/
|
|
|
|
|
| |
to develop
* commit '30ac64d83aff5e022d51a17fd6c1d72903ae4f02':
add new type support
|
| |
|
|
|
|
|
|
| |
produced by test/vds.c in the develop
branch. The fix: verify the decoded version for hyperslab selection is within the correct range.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Update version to 1.10.6-snap4
|
| |
|
| |
|
| |
|
|\
| |
| |
| |
| | |
* commit 'fb05ff4c4a392d38a45e79fe461bc690dea6f325':
Added MPICH_SKIP_MPICXX and OMPI_SKIP_CXX to H5public.h to avoid inadvertant linking to the deprecated MPI C++ wrappers. Fixes HDFFV-10893.
|
| |\
| | |
| | |
| | |
| | |
| | |
| | | |
to hdf5_1_10
* commit '71c80267ba0db1c1b439d39e4bd7c27b82510c92':
Added MPICH_SKIP_MPICXX and OMPI_SKIP_CXX to H5public.h to avoid inadvertant linking to the deprecated MPI C++ wrappers. Fixes HDFFV-10893.
|
| | |
| | |
| | |
| | | |
linking to the deprecated MPI C++ wrappers. Fixes HDFFV-10893.
|
|\ \ \
| |/ /
| | |
| | |
| | | |
* commit '2ca63e3890ebdaee7dc835e5d995ff03a182940f':
Snapshot version 1.10 release 6 (snap2) Update version to 1.10.6-snap3
|
| |\ \
| | |/
| | |
| | | |
ssh://bitbucket.hdfgroup.org:7999/~hdftest/hdf5_hft into hdf5_1_10
|
| | |
| | |
| | |
| | | |
Update version to 1.10.6-snap3
|
|\ \ \
| | |/
| |/|
| | |
| | | |
* commit '406890277cbe92be1d68721a6fa115441ab1a726':
Fixed a bug where we incorrectly pass a lock struct to fcntl for file locking instead of a pointer. (HDFFV-10892)
|
| |/
| |
| |
| | |
for file locking instead of a pointer. (HDFFV-10892)
|