diff options
author | Andreas Sandberg <andreas.sandberg@arm.com> | 2015-08-07 09:59:14 +0100 |
---|---|---|
committer | Andreas Sandberg <andreas.sandberg@arm.com> | 2015-08-07 09:59:14 +0100 |
commit | af6b51925cb5032dd2c670bd2c21912b732c6fc1 (patch) | |
tree | 9cdd524ee3c00895847153a099087c1ec02ab098 /src/dev/sinic.hh | |
parent | 53e777d6838ac3ca80e6557626f9e99fd93dd0f7 (diff) | |
download | gem5-af6b51925cb5032dd2c670bd2c21912b732c6fc1.tar.xz |
dev: Make serialization in Sinic constant
This changeset transitions the Sinic device to the new serialization
framework that requires the serialization method to be constant.
Diffstat (limited to 'src/dev/sinic.hh')
-rw-r--r-- | src/dev/sinic.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dev/sinic.hh b/src/dev/sinic.hh index f0645a807..41a629af1 100644 --- a/src/dev/sinic.hh +++ b/src/dev/sinic.hh @@ -297,7 +297,7 @@ class Device : public Base * Serialization stuff */ public: - void serializeOld(CheckpointOut &cp) M5_ATTR_OVERRIDE; + void serialize(CheckpointOut &cp) const M5_ATTR_OVERRIDE; void unserialize(CheckpointIn &cp) M5_ATTR_OVERRIDE; public: |