This pull request fixes a small error in the ADD_SERIALIZE_METHODS documentation.
At the moment the ADD_SERIALIZE_METHODS macro adds two methods to a class:
template<typename Stream>void Serialize(Stream& s) const { ... }
template<typename Stream>void Unserialize(Stream& s) { ... }
ADD_SERIALIZE_METHODS used to add three methods to a class:
size_t GetSerializeSize(int nType, int nVersion) const {...}
template<typename Stream>void Serialize(Stream& s, int nType, int nVersion) const {...}
template<typename Stream>void Unserialize(Stream& s, int nType, int nVersion) {...}
size_t GetSerializeSize(int nType, int nVersion) const was removed from the ADD_SERIALIZE_METHODS macro in 657e05ab2e87ff725723fe8a375fc3f8aad02126, but the documentation was not updated accordingly at the time.
This pull request corrects this mistake.