diff options
| author | Kamil Domanski <[email protected]> | 2014-08-20 22:44:38 +0200 |
|---|---|---|
| committer | Kamil Domanski <[email protected]> | 2014-08-31 02:16:17 +0200 |
| commit | 84881f8c472cc67dc757686eb7dc3b495b13cab8 (patch) | |
| tree | 9aa2ae012cc4817464cb60e9d838fa92464a9477 /src/addrman.h | |
| parent | remove fields of ser_streamplaceholder (diff) | |
| download | discoin-84881f8c472cc67dc757686eb7dc3b495b13cab8.tar.xz discoin-84881f8c472cc67dc757686eb7dc3b495b13cab8.zip | |
rework overhauled serialization methods to non-static
Thanks to Pieter Wuille for most of the work on this commit.
I did not fixup the overhaul commit, because a rebase conflicted
with "remove fields of ser_streamplaceholder".
I prefer not to risk making a mistake while resolving it.
Diffstat (limited to 'src/addrman.h')
| -rw-r--r-- | src/addrman.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/addrman.h b/src/addrman.h index 4287cbc1b..05af436ae 100644 --- a/src/addrman.h +++ b/src/addrman.h @@ -46,16 +46,16 @@ private: public: - IMPLEMENT_SERIALIZE + IMPLEMENT_SERIALIZE; - template <typename T, typename Stream, typename Operation> - inline static size_t SerializationOp(T thisPtr, Stream& s, Operation ser_action, int nType, int nVersion) { + 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*)(thisPtr); + CAddress* pthis = (CAddress*)(this); READWRITE(*pthis); - READWRITE(thisPtr->source); - READWRITE(thisPtr->nLastSuccess); - READWRITE(thisPtr->nAttempts); + READWRITE(source); + READWRITE(nLastSuccess); + READWRITE(nAttempts); return nSerSize; } |