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
I have a struct defining an inner anonymous union like this:
typedefstructlibmzdb_spectrum_data
{
libmzdb_data_encoding_tdata_encoding;
intpeak_count;
union {
double*mz_array_as_doubles;
float*mz_array_as_floats;
};
union {
double*intensity_array_as_doubles;
float*intensity_array_as_floats;
};
float*lwhm_array; // warning: can be NULLfloat*rwhm_array; // warning: can be NULL
} libmzdb_spectrum_data_t;
In the generated bindings some parts of the code are missing (see ERROR comments):
In this header file
https://github.com/mzdb/rmzdb/blob/master/src/libmzdb.h
I have a struct defining an inner anonymous union like this:
In the generated bindings some parts of the code are missing (see ERROR comments):
The text was updated successfully, but these errors were encountered: