Object print bug fix

This commit is contained in:
Polina Dudnik 2009-09-11 10:59:08 -05:00
parent 2af2e590e1
commit 353a69eae7

View file

@ -110,6 +110,7 @@ void DataBlock::print(ostream& out) const
out << "[ ";
for (int i = 0; i < size; i++) {
out << setw(2) << setfill('0') << hex << "0x" << (int)m_data[i] << " ";
out << setfill(' ');
}
out << dec << "]" << flush;
}