You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are warnings when compiling under recent Octave(s). According to docs, the "error_state" variable has been removed and replaced by exceptions. Compiling h5read.cc after adding
#define error_state 0
is ok.
Thus I think the code "if (!error_state) {....}" can be deleted completely.
The text was updated successfully, but these errors were encountered:
There are warnings when compiling under recent Octave(s). According to docs, the "error_state" variable has been removed and replaced by exceptions. Compiling h5read.cc after adding
#define error_state 0
is ok.
Thus I think the code "if (!error_state) {....}" can be deleted completely.
The text was updated successfully, but these errors were encountered: