diff options
Diffstat (limited to 'src/common/container.h')
-rw-r--r-- | src/common/container.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/common/container.h b/src/common/container.h index a6b7b56adb..8fbc863cbb 100644 --- a/src/common/container.h +++ b/src/common/container.h @@ -11,7 +11,12 @@ #include "compat.h" #include "util.h" -/** A resizeable list of pointers, with associated helpful functionality. */ +/** A resizeable list of pointers, with associated helpful functionality. + * + * The members of this struct are exposed only so that macros and inlines can + * use them; all access to smartlist internals should go throuch the functions + * and macros defined here. + **/ typedef struct smartlist_t { /** <b>list</b> has enough capacity to store exactly <b>capacity</b> elements * before it needs to be resized. Only the first <b>num_used</b> (\<= |