From 87bbc09b9ed693a2c59a27931f6c2b97e76d1a8e Mon Sep 17 00:00:00 2001 From: Matthias Maennich via libabigail Date: Mon, 15 Apr 2019 18:05:13 +0100 Subject: [PATCH] abg-fwd.h: fix mismatched tags for ir_node_visitor ir_node_visitor is defined as `class` in include/abg-ir.h:4429 and should therefore also be forward-declared as such. * include/abg-fwd.h: forward-declare ir_node_visitor as class Signed-off-by: Matthias Maennich --- include/abg-fwd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/abg-fwd.h b/include/abg-fwd.h index 4625841..82d91fe 100644 --- a/include/abg-fwd.h +++ b/include/abg-fwd.h @@ -87,7 +87,7 @@ typedef shared_ptr corpus_group_sptr; // Forward declarations for ir. -struct ir_node_visitor; +class ir_node_visitor; struct ir_traversable_base; -- 2.7.4