fix bug in streaming of SimulationOwner class

This commit is contained in:
Andrew Meadows 2015-06-26 08:46:55 -07:00
parent 40f6ecd936
commit 1ba937eab9

View file

@ -173,7 +173,7 @@ SimulationOwner& SimulationOwner::operator=(const SimulationOwner& other) {
} }
QDebug& operator<<(QDebug& d, const SimulationOwner& simOwner) { QDebug& operator<<(QDebug& d, const SimulationOwner& simOwner) {
d << "{ id : " << simOwner << ", priority : " << (int)simOwner._priority << " }"; d << "{ id : " << simOwner._id << ", priority : " << (int)simOwner._priority << " }";
return d; return d;
} }