Fix const-ness of a function parameter

* include/abg-fwd.h (is_function_decl): Add a const to the
	parameter to make it comply with the definition in abg-ir.cc.
	Woops.

Signed-off-by: Dodji Seketeli <dodji@redhat.com>
This commit is contained in:
Dodji Seketeli 2015-10-14 20:44:18 +02:00
parent d7c2caf23a
commit 1a6b957401

View File

@ -174,7 +174,7 @@ bool
is_template_parameter(const shared_ptr<decl_base>);
function_decl*
is_function_decl(decl_base*);
is_function_decl(const decl_base*);
shared_ptr<function_decl>
is_function_decl(shared_ptr<decl_base>);