Always show pretty representation of variables in report

* src/abg-comparison.cc (corpus_diff::report): Display the pretty
	representation of the variable, no matter what.

Signed-off-by: Dodji Seketeli <dodji@redhat.com>
This commit is contained in:
Dodji Seketeli 2014-04-21 20:48:20 +02:00
parent 1e55727b98
commit 4a761d2a5a

View File

@ -6178,9 +6178,6 @@ corpus_diff::report(ostream& out, const string& indent) const
i != priv_->added_vars_.end();
++i)
{
if (!i->second->get_mangled_name().empty())
n = demangle_cplus_mangled_name(i->second->get_mangled_name());
else
n = i->second->get_pretty_representation();
out << indent
<< " '";