Fixed bug in outputting UnionArrays.

This commit is contained in:
dhickin
2013-11-11 12:02:35 +00:00
parent e97fab3107
commit ac67fddbcb

View File

@@ -208,7 +208,7 @@ std::ostream& PVUnionArray::dumpValue(std::ostream& o, std::size_t index) const
{
const_svector temp(view());
if(index<temp.size())
o << temp[index].get();
o << *temp[index];
return o;
}