diff options
| author | Pieter Wuille <[email protected]> | 2020-03-11 09:35:50 -0700 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2020-03-30 16:10:30 -0700 |
| commit | 4eb5643e3538863c9d2ff261f49a9a1b248de243 (patch) | |
| tree | 377437ffee20c67fa7e0611c31be6b2490a4483c /src/bench/prevector.cpp | |
| parent | Convert blockencodings_tests to new serialization (diff) | |
| download | discoin-4eb5643e3538863c9d2ff261f49a9a1b248de243.tar.xz discoin-4eb5643e3538863c9d2ff261f49a9a1b248de243.zip | |
Convert everything except wallet/qt to new serialization
Diffstat (limited to 'src/bench/prevector.cpp')
| -rw-r--r-- | src/bench/prevector.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/bench/prevector.cpp b/src/bench/prevector.cpp index 00e5d7e7a..42b351a72 100644 --- a/src/bench/prevector.cpp +++ b/src/bench/prevector.cpp @@ -20,9 +20,7 @@ struct nontrivial_t { int x; nontrivial_t() :x(-1) {} - ADD_SERIALIZE_METHODS - template <typename Stream, typename Operation> - inline void SerializationOp(Stream& s, Operation ser_action) {READWRITE(x);} + SERIALIZE_METHODS(nontrivial_t, obj) { READWRITE(obj.x); } }; static_assert(!IS_TRIVIALLY_CONSTRUCTIBLE<nontrivial_t>::value, "expected nontrivial_t to not be trivially constructible"); |