Struct end attributes are added to the SmPL AST. Reflect these changes in check_meta.ml.
Signed-off-by: Jaskaran Singh <[email protected]> --- parsing_cocci/check_meta.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parsing_cocci/check_meta.ml b/parsing_cocci/check_meta.ml index 7035766c..f651ff8b 100644 --- a/parsing_cocci/check_meta.ml +++ b/parsing_cocci/check_meta.ml @@ -292,7 +292,7 @@ and declaration context old_metas table minus d = (match Ast0.unwrap ini with Ast0.InitExpr exp -> expression ID old_metas table minus exp | _ -> initialiser old_metas table minus ini) - | Ast0.TyDecl(ty,sem) -> typeC old_metas table minus ty + | Ast0.TyDecl(ty,attr,sem) -> typeC old_metas table minus ty | Ast0.Typedef(stg,ty,id,sem) -> typeC old_metas table minus ty; typeC old_metas table minus id -- 2.21.1 _______________________________________________ Cocci mailing list [email protected] https://systeme.lip6.fr/mailman/listinfo/cocci
