Struct end attributes are added to the SmPL AST. Reflect these changes in coccilib.mli.
Signed-off-by: Jaskaran Singh <[email protected]> --- ocaml/coccilib.mli | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ocaml/coccilib.mli b/ocaml/coccilib.mli index c5195084..24b5f1ae 100644 --- a/ocaml/coccilib.mli +++ b/ocaml/coccilib.mli @@ -2766,7 +2766,7 @@ module Ast_cocci : string mcode | FunProto of fninfo list * ident * 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 * string mcode * expression dots * string mcode * attr list * string mcode | MacroDeclInit of storage mcode option * ident * string mcode * @@ -3401,7 +3401,7 @@ module Ast0_cocci : attr list * string mcode | FunProto of fninfo list * ident * string mcode * parameter_list * (string mcode * string mcode) option * string mcode * string mcode - | TyDecl of typeC * string mcode + | TyDecl of typeC * attr list * string mcode | MacroDecl of Ast_cocci.storage mcode option * ident * string mcode * expression dots * string mcode * attr list * string mcode | MacroDeclInit of Ast_cocci.storage mcode option * ident * -- 2.21.1 _______________________________________________ Cocci mailing list [email protected] https://systeme.lip6.fr/mailman/listinfo/cocci
