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
Bool32 is defined as a 32 bit primitive but no methods of any kind are available so some functions that use this argument are difficult to use. Is there a specific reason for this? Couldn't Bool32 be defined as a Int32?
Replace the line in NIDAQ.jl primitive type Bool32<:Integer 32 end
with const Bool32 = Int32
Paulo
The text was updated successfully, but these errors were encountered:
huh. good point. i don't remember the reason for that. have you tried it yourself and everything works? happy to review a PR. you'd want to make changes in these two places too:
Bool32 is defined as a 32 bit primitive but no methods of any kind are available so some functions that use this argument are difficult to use. Is there a specific reason for this? Couldn't Bool32 be defined as a Int32?
Replace the line in NIDAQ.jl
primitive type Bool32<:Integer 32 end
with
const Bool32 = Int32
Paulo
The text was updated successfully, but these errors were encountered: