Fix for unexported global variable on Windows (#1568)

This commit is contained in:
Dana Robinson
2022-04-01 13:42:22 -07:00
committed by GitHub
parent e8ea850004
commit f15afef6b3

View File

@@ -1990,8 +1990,11 @@ extern hbool_t H5_libterm_g; /* Is the library being shutdown? */
/* Extern global to determine if we should use selection I/O if available (this
* variable should be removed once selection I/O performs as well as the
* previous scalar I/O implementation */
extern hbool_t H5_use_selection_io_g;
* previous scalar I/O implementation
*
* NOTE: Must be exposed via H5_DLLVAR so parallel tests pass on Windows.
*/
H5_DLLVAR hbool_t H5_use_selection_io_g;
#ifdef H5_HAVE_CODESTACK