Tidy get_pretty_representation qualified_name.

The virtual function get_pretty_representation exists in many
classes (derived from type_or_decl_base). It takes a qualified_name
argumenta and this is defaulted to true in all but one case which
seems to be an oversight.

This commit changes this for no better reason than consistency.

	* include/abg-ir.h (type_decl::get_pretty_representation)
	Change default for qualified_name parameter to true.

Signed-off-by: Giuliano Procida <gprocida@google.com>
This commit is contained in:
Giuliano Procida 2020-05-05 19:17:00 +01:00 committed by Dodji Seketeli
parent e2341a939c
commit 38504ab66c

View File

@ -1943,7 +1943,7 @@ public:
virtual string
get_pretty_representation(bool internal = false,
bool qualified_name = false) const;
bool qualified_name = true) const;
virtual bool
traverse(ir_node_visitor&);