diff options
author | Nathan Binkert <nate@binkert.org> | 2009-06-04 23:21:12 -0700 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2009-06-04 23:21:12 -0700 |
commit | 6faf377b5305f9dcc3c7b013c4d67f5accb92617 (patch) | |
tree | 0e437fb49a32dd3d2d2bec95a8dc3bdb4ddf05b0 /src/sim/serialize.hh | |
parent | 4e3426624557b555c354035ee3961eab7554d81d (diff) | |
download | gem5-6faf377b5305f9dcc3c7b013c4d67f5accb92617.tar.xz |
types: clean up types, especially signed vs unsigned
Diffstat (limited to 'src/sim/serialize.hh')
-rw-r--r-- | src/sim/serialize.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sim/serialize.hh b/src/sim/serialize.hh index 0069f5614..08240c0c0 100644 --- a/src/sim/serialize.hh +++ b/src/sim/serialize.hh @@ -59,7 +59,7 @@ void paramIn(Checkpoint *cp, const std::string §ion, template <class T> void arrayParamOut(std::ostream &os, const std::string &name, - const T *param, int size); + const T *param, unsigned size); template <class T> void arrayParamOut(std::ostream &os, const std::string &name, @@ -67,7 +67,7 @@ void arrayParamOut(std::ostream &os, const std::string &name, template <class T> void arrayParamIn(Checkpoint *cp, const std::string §ion, - const std::string &name, T *param, int size); + const std::string &name, T *param, unsigned size); template <class T> void arrayParamIn(Checkpoint *cp, const std::string §ion, |