diff options
Diffstat (limited to 'src/H5Tpublic.h')
-rw-r--r-- | src/H5Tpublic.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5Tpublic.h b/src/H5Tpublic.h index d9284f1..b735465 100644 --- a/src/H5Tpublic.h +++ b/src/H5Tpublic.h @@ -150,7 +150,8 @@ typedef enum H5T_pers_t { H5T_PERS_SOFT = 1 /*soft conversion function */ } H5T_pers_t; -/* Variable Length Datatype struct */ +/* Variable Length Datatype struct in memory */ +/* (This is only used for VL sequences, not VL strings, which are stored in char *'s) */ typedef struct { size_t len; /* Length of VL data (in base type units) */ void *p; /* Pointer to VL data */ |