Change presentation of enum val to include namespace.

Enum vals now add their full identifier string, including module
namespace to ODescs.
This commit is contained in:
Jon Siwek 2011-08-31 10:57:19 -05:00
parent a38c45b8bf
commit 2e853a3892
5 changed files with 40 additions and 25 deletions

View file

@ -3104,10 +3104,6 @@ void EnumVal::ValDescribe(ODesc* d) const
if ( ! ename )
ename = "<undefined>";
const char* module_offset = strstr(ename, "::");
if ( module_offset )
ename = module_offset + 2;
d->Add(ename);
}