diff options
Diffstat (limited to 'src/sim')
-rw-r--r-- | src/sim/serialize.cc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/sim/serialize.cc b/src/sim/serialize.cc index 5f854a776..d95092629 100644 --- a/src/sim/serialize.cc +++ b/src/sim/serialize.cc @@ -87,6 +87,14 @@ showParam(ostream &os, const T &value) // Treat 8-bit ints (chars) as ints on output, not as chars template <> void +showParam(ostream &os, const char &value) +{ + os << (int)value; +} + + +template <> +void showParam(ostream &os, const signed char &value) { os << (int)value; @@ -350,6 +358,7 @@ template void \ arrayParamIn(Checkpoint *cp, const string §ion, \ const string &name, vector<type> ¶m); +INSTANTIATE_PARAM_TEMPLATES(char) INSTANTIATE_PARAM_TEMPLATES(signed char) INSTANTIATE_PARAM_TEMPLATES(unsigned char) INSTANTIATE_PARAM_TEMPLATES(signed short) |