Add struct end attributes to the SmPL AST. This is a list of attributes in the TyDecl type of the SmPL AST.
Signed-off-by: Jaskaran Singh <[email protected]> --- parsing_cocci/ast_cocci.ml | 2 +- parsing_cocci/ast_cocci.mli | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/parsing_cocci/ast_cocci.ml b/parsing_cocci/ast_cocci.ml index b4b74a67..403756c4 100644 --- a/parsing_cocci/ast_cocci.ml +++ b/parsing_cocci/ast_cocci.ml @@ -396,7 +396,7 @@ and base_declaration = string mcode (* ( *) * parameter_list * (string mcode (* , *) * string mcode (* ...... *) ) option * string mcode (* ) *) * string mcode (* ; *) - | TyDecl of fullType * string mcode (* ; *) + | TyDecl of fullType * attr list * string mcode (* ; *) | MacroDecl of storage mcode option * ident (* name *) * string mcode (* ( *) * expression dots * string mcode (* ) *) * diff --git a/parsing_cocci/ast_cocci.mli b/parsing_cocci/ast_cocci.mli index 77dba10f..873e1d31 100644 --- a/parsing_cocci/ast_cocci.mli +++ b/parsing_cocci/ast_cocci.mli @@ -378,7 +378,7 @@ and base_declaration = string mcode (* ( *) * parameter_list * (string mcode (* , *) * string mcode (* ...... *) ) option * string mcode (* ) *) * string mcode (* ; *) - | TyDecl of fullType * string mcode (* ; *) + | TyDecl of fullType * attr list * string mcode (* ; *) | MacroDecl of storage mcode option * ident (* name *) * string mcode (* ( *) * expression dots * string mcode (* ) *) * -- 2.21.1 _______________________________________________ Cocci mailing list [email protected] https://systeme.lip6.fr/mailman/listinfo/cocci
