aboutsummaryrefslogtreecommitdiff
path: root/src/flatfile.h
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2020-02-06 19:57:32 -0800
committerPieter Wuille <pieter.wuille@gmail.com>2020-02-10 12:00:10 -0800
commit0e0fa27acb74b4f0075afcf59a0dff51a21baddb (patch)
tree5e5e97c659eb49c6578f768ed9bd347eb1d98cf5 /src/flatfile.h
parent646f0ada0205ae4b3952107e3b1542f06adda32b (diff)
downloadbitcoin-0e0fa27acb74b4f0075afcf59a0dff51a21baddb.tar.xz
Get rid of VARINT default argument
This removes the need for the GNU C++ extension of variadic macros.
Diffstat (limited to 'src/flatfile.h')
-rw-r--r--src/flatfile.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flatfile.h b/src/flatfile.h
index 374ceff411..d80682d383 100644
--- a/src/flatfile.h
+++ b/src/flatfile.h
@@ -20,7 +20,7 @@ struct FlatFilePos
template <typename Stream, typename Operation>
inline void SerializationOp(Stream& s, Operation ser_action) {
- READWRITE(VARINT(nFile, VarIntMode::NONNEGATIVE_SIGNED));
+ READWRITE(VARINT_MODE(nFile, VarIntMode::NONNEGATIVE_SIGNED));
READWRITE(VARINT(nPos));
}