checkpointing: fix bug from curTick accessor conversion.
Regex replacement of curTick with curTick() accidentally changed checkpoint key string for serialization but not for unserialization.
This commit is contained in:
@@ -400,7 +400,7 @@ void
|
||||
Globals::serialize(ostream &os)
|
||||
{
|
||||
nameOut(os);
|
||||
SERIALIZE_SCALAR(curTick());
|
||||
paramOut(os, "curTick", curTick());
|
||||
|
||||
nameOut(os, "MainEventQueue");
|
||||
mainEventQueue.serialize(os);
|
||||
|
||||
Reference in New Issue
Block a user