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

Add "vector" member to scm_t_array_handle

* libguile/array-handle.h (scm_t_array_handle): Add "vector" member.
* libguile/array-handle.c (scm_array_get_handle): Initialize the vector
  member.
This commit is contained in:
Andy Wingo 2014-02-08 22:11:36 +01:00
parent e6658f527e
commit a0ef1252af
2 changed files with 4 additions and 0 deletions

View file

@ -106,6 +106,9 @@ typedef struct scm_t_array_handle {
scm_t_array_element_type element_type;
const void *elements;
void *writable_elements;
/* The backing store for the array, and its accessors. */
SCM vector;
scm_t_array_ref vref;
scm_t_array_set vset;
} scm_t_array_handle;