Simpler fix for bug in outputting StructureArrays.

This commit is contained in:
dhickin
2013-11-08 18:49:57 +00:00
parent fee6f03ec2
commit e97fab3107

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];
return o;
}