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
Chapel recently deprecated c_void_ptr in favor of c_ptr(void), which will be in the 1.32 release (PR chapel-lang/chapel#22637). This also included compiler changes to make c_ptr(void) possible, which would not previously compile. To avoid use of the now-deprecated c_void_ptr in versions newer than 1.31, introduce a new c_ptr_void symbol in ArkoudaCTypesCompat which is c_void_ptr for Chapel <=1.31, and c_ptr(void) for Chapel >1.31.
The text was updated successfully, but these errors were encountered:
Chapel recently deprecated
c_void_ptr
in favor ofc_ptr(void)
, which will be in the 1.32 release (PR chapel-lang/chapel#22637). This also included compiler changes to makec_ptr(void)
possible, which would not previously compile. To avoid use of the now-deprecatedc_void_ptr
in versions newer than 1.31, introduce a newc_ptr_void
symbol inArkoudaCTypesCompat
which isc_void_ptr
for Chapel <=1.31, andc_ptr(void)
for Chapel >1.31.The text was updated successfully, but these errors were encountered: