* src/symtab.h: here. --- src/symtab.h | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-)
diff --git a/src/symtab.h b/src/symtab.h index db902e7..abcafa6 100644 --- a/src/symtab.h +++ b/src/symtab.h @@ -62,21 +62,23 @@ struct symbol /** Its \c \%type. */ uniqstr type_name; + /** Its \c \%type's location. */ location type_location; /** Any \c \%destructor declared specifically for this symbol. - Access this field only through <tt>symbol</tt>'s interface functions. For - example, if <tt>symbol::destructor = NULL</tt>, a default \c \%destructor - or a per-type \c \%destructor might be appropriate, and - \c symbol_destructor_get will compute the correct one. */ + Access this field only through <tt>symbol</tt>'s interface + functions. For example, if <tt>symbol::destructor = NULL</tt>, a + default \c \%destructor or a per-type \c \%destructor might be + appropriate, and \c symbol_destructor_get will compute the + correct one. */ code_props destructor; /** Any \c \%printer declared specifically for this symbol. - Access this field only through <tt>symbol</tt>'s interface functions. - \sa symbol::destructor */ + Access this field only through <tt>symbol</tt>'s interface functions. + \sa symbol::destructor */ code_props printer; symbol_number number; -- 1.7.11.3
