1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-02 04:40:29 +02:00

Merge generalized-arrays.[ch] in arrays.[ch]

The split was just confusing.
This commit is contained in:
Daniel Llorens 2020-02-06 17:16:07 +01:00
parent 54e676c1d2
commit f43cf201d7
13 changed files with 395 additions and 490 deletions

View file

@ -72,7 +72,7 @@ typedef struct scm_t_array_handle {
solution would be, well, nice.
*/
size_t base;
size_t ndims; /* ndims == the rank of the array */
size_t ndims; /* the rank of the array */
scm_t_array_dim *dims;
scm_t_array_dim dim0;
scm_t_array_element_type element_type;