diff options
| author | Pieter Wuille <[email protected]> | 2014-08-21 00:49:32 +0200 |
|---|---|---|
| committer | Kamil Domanski <[email protected]> | 2014-08-31 02:18:42 +0200 |
| commit | 31e9a8384a77947f6777d035992f4734618ed206 (patch) | |
| tree | 9a055fbae630bad4b7982a5aae1294a9579382cb /src/addrman.h | |
| parent | rework overhauled serialization methods to non-static (diff) | |
| download | discoin-31e9a8384a77947f6777d035992f4734618ed206.tar.xz discoin-31e9a8384a77947f6777d035992f4734618ed206.zip | |
Use CSizeComputer to avoid counting sizes in SerializationOp
Diffstat (limited to 'src/addrman.h')
| -rw-r--r-- | src/addrman.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/addrman.h b/src/addrman.h index 05af436ae..2b6e45664 100644 --- a/src/addrman.h +++ b/src/addrman.h @@ -49,14 +49,11 @@ public: IMPLEMENT_SERIALIZE; template <typename Stream, typename Operation> - inline size_t SerializationOp(Stream& s, Operation ser_action, int nType, int nVersion) { - size_t nSerSize = 0; - CAddress* pthis = (CAddress*)(this); - READWRITE(*pthis); + inline void SerializationOp(Stream& s, Operation ser_action, int nType, int nVersion) { + READWRITE(*(CAddress*)this); READWRITE(source); READWRITE(nLastSuccess); READWRITE(nAttempts); - return nSerSize; } void Init() |