LLNL / shroud

Shroud: generate Fortran and Python wrappers for C and C++ libraries
BSD 3-Clause "New" or "Revised" License
91 stars 7 forks source link

Change type of address field in array_context helper #334

Closed ltaylor16 closed 9 months ago

ltaylor16 commented 9 months ago
-union {
-    const void * base;
-    const char * ccharp;
-} addr;
+void * base_addr;

More consistent with CFI_desc_t. The const was requiring more casting as well.