Struct end attributes are added to the SmPL AST. Reflect these changes in type_infer.ml.
Signed-off-by: Jaskaran Singh <[email protected]> --- parsing_cocci/type_infer.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parsing_cocci/type_infer.ml b/parsing_cocci/type_infer.ml index b5bc3a38..02e300a2 100644 --- a/parsing_cocci/type_infer.ml +++ b/parsing_cocci/type_infer.ml @@ -384,7 +384,7 @@ let rec propagate_types env = | Ast0.MacroDeclInit(_,_,_,_,_,_,exp,_) -> let _ = (propagate_types env).VT0.combiner_rec_initialiser exp in [] - | Ast0.TyDecl(ty,_) -> [] + | Ast0.TyDecl(ty,_,_) -> [] (* pad: should handle typedef one day and add a binding *) | Ast0.Typedef((a,_,_,_,_,_),b,c,(d,_,_,_,_,_)) -> [] -- 2.21.1 _______________________________________________ Cocci mailing list [email protected] https://systeme.lip6.fr/mailman/listinfo/cocci
