Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sync develop changes May 6 - May 20 to hdf5_1_14 #4503

Merged
merged 22 commits into from
May 23, 2024
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
7893931
win32defs: Fix Wundef warning (#4467)
jschueller May 9, 2024
8c6e40c
Refactor error handling code to eliminate internal ID calls (#4453)
qkoziol May 9, 2024
abd95e7
CMake: Fix mingw/fortran build (#4466)
jschueller May 10, 2024
c43350c
Update for blosc2 in plugins and prefix hdf5 cmake varnames (#4468)
byrnHDF May 10, 2024
a31a522
Fix an issue where compound datatype member IDs can be leaked during …
jhendersonHDF May 10, 2024
9c80402
H5Group: Fix operator= (#4473)
jschueller May 10, 2024
4bad8ec
Fix github issue #2523: doxygen -- fix grammatically incorrect senten…
vchoi-hdfgroup May 13, 2024
07a9879
Remove env step not used by CI in testing (#4476)
byrnHDF May 13, 2024
a3f6541
Add H5fortkit dependecy for H5Rff.F90 (#4482)
brtnfld May 14, 2024
5d11d02
Properly clean up cache when failing to load an object header (#4477)
fortnern May 14, 2024
befc670
Add a missing image from the original document (#4490)
bmribler May 15, 2024
831502a
Disable EOF checks for SWMR readers in more cases. (#4489)
qkoziol May 15, 2024
65a6dde
Remove unnecessary fortran install (#4498)
byrnHDF May 17, 2024
ec77125
Only one version of binaries is produced for platforms (#4496)
byrnHDF May 17, 2024
d266fae
Fix for github issue #2220. (#4497)
vchoi-hdfgroup May 17, 2024
6554e64
Release asset tarballs with no version filenames (#4494)
brtnfld May 17, 2024
f0a6d59
Improve spec. reading superblock into cache (a little) by using v2 si…
qkoziol May 17, 2024
e441451
Fix for github Issue #1388 can't delete renamed dense attribute with …
vchoi-hdfgroup May 17, 2024
6946ad9
Fix/revert a libtool sed hack (#4501)
derobins May 20, 2024
3e134ba
Update src/H5public.h
lrknox May 22, 2024
205a607
Set H5 specific vars immediately if legacy find (#4512)
byrnHDF May 22, 2024
5098647
Merge branch 'sync_develop_changes_to_1_14' of https://github.com/lrk…
lrknox May 23, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
win32defs: Fix Wundef warning (#4467)
jschueller authored and lrknox committed May 20, 2024
commit 789393150e9ba4ec0a6a66a7a16b996709448bd3
2 changes: 1 addition & 1 deletion src/H5win32defs.h
Original file line number Diff line number Diff line change
@@ -57,7 +57,7 @@ struct timezone {
* MinGW and the newer, conforming MSVC preprocessor do not exhibit this
* behavior.
*/
#if (defined(_MSC_VER) && !defined(_MSVC_TRADITIONAL)) || _MSVC_TRADITIONAL
#if (defined(_MSC_VER) && !defined(_MSVC_TRADITIONAL)) || defined(_MSVC_TRADITIONAL)
/* Using the MSVC traditional preprocessor */
#define HDopen(S, F, ...) Wopen(S, F, __VA_ARGS__)
#else