Fixed bug in outputting StructureArrays.

This commit is contained in:
dhickin
2013-11-08 18:27:15 +00:00
parent 1aff2ec112
commit fee6f03ec2

View File

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