Browse Source

remove fields of ser_streamplaceholder

The nType and nVersion fields of stream objects are never accessed
from outside the class (or perhaps from the inside too, I haven't checked).
Thus no need to have them in a placeholder, whose only purpose is to
fill the "Stream" template parameter in serialization implementation.
pull/145/head
Kamil Domanski 10 years ago
parent
commit
5d96b4ae01
  1. 10
      src/serialize.h

10
src/serialize.h

@ -97,8 +97,6 @@ enum
#define IMPLEMENT_SERIALIZE \
size_t GetSerializeSize(int nType, int nVersion) const { \
ser_streamplaceholder s; \
s.nType = nType; \
s.nVersion = nVersion; \
return SerializationOp(MAKE_CONST(this), s, CSerActionGetSerializeSize(), nType, nVersion); \
} \
template<typename Stream> \
@ -835,13 +833,7 @@ inline unsigned int SerReadWrite(Stream& s, T& obj, int nType, int nVersion, CSe
return 0;
}
struct ser_streamplaceholder
{
int nType;
int nVersion;
};
struct ser_streamplaceholder { };

Loading…
Cancel
Save