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:
parent
ddeaf1252f
commit
5c99ae60b8
1 changed files with 1 additions and 1 deletions
|
@ -400,7 +400,7 @@ void
|
||||||
Globals::serialize(ostream &os)
|
Globals::serialize(ostream &os)
|
||||||
{
|
{
|
||||||
nameOut(os);
|
nameOut(os);
|
||||||
SERIALIZE_SCALAR(curTick());
|
paramOut(os, "curTick", curTick());
|
||||||
|
|
||||||
nameOut(os, "MainEventQueue");
|
nameOut(os, "MainEventQueue");
|
||||||
mainEventQueue.serialize(os);
|
mainEventQueue.serialize(os);
|
||||||
|
|
Loading…
Reference in a new issue