Skip to content

Commit

Permalink
Merge 581907c into 874cf4a
Browse files Browse the repository at this point in the history
  • Loading branch information
narodnik committed Dec 8, 2018
2 parents 874cf4a + 581907c commit 2e81f6b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions include/bitcoin/bitcoin/impl/utility/deserializer.ipp
Expand Up @@ -34,14 +34,14 @@ namespace libbitcoin {
// Since the end is not used just use begin.
template <typename Iterator, bool CheckSafe>
deserializer<Iterator, CheckSafe>::deserializer(const Iterator begin)
: iterator_(begin), end_(begin), valid_(true)
: valid_(true), iterator_(begin), end_(begin)
{
}

template <typename Iterator, bool CheckSafe>
deserializer<Iterator, CheckSafe>::deserializer(const Iterator begin,
const Iterator end)
: iterator_(begin), end_(end), valid_(true)
: valid_(true), iterator_(begin), end_(end)
{
}

Expand Down
2 changes: 1 addition & 1 deletion include/bitcoin/bitcoin/impl/utility/serializer.ipp
Expand Up @@ -31,7 +31,7 @@ namespace libbitcoin {

template <typename Iterator>
serializer<Iterator>::serializer(const Iterator begin)
: iterator_(begin), valid_(true)
: valid_(true), iterator_(begin)
{
}

Expand Down

0 comments on commit 2e81f6b

Please sign in to comment.