Skip to content

Commit

Permalink
win32defs: Fix Wundef warning (HDFGroup#4467)
Browse files Browse the repository at this point in the history
  • Loading branch information
jschueller authored and lrknox committed May 20, 2024
1 parent 5f36553 commit 7893931
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/H5win32defs.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7893931

Please sign in to comment.