mirror of
https://github.com/XRPLF/rippled.git
synced 2026-07-31 19:10:25 +00:00
respond to comments
This commit is contained in:
@@ -156,24 +156,5 @@ public:
|
||||
os << seqProx.value();
|
||||
return os;
|
||||
}
|
||||
|
||||
constexpr SeqProxy
|
||||
operator+(std::uint32_t const& rhs) const
|
||||
{
|
||||
return SeqProxy{type_, value_ + rhs};
|
||||
}
|
||||
|
||||
friend constexpr SeqProxy
|
||||
operator+(std::uint32_t const& lhs, SeqProxy const& rhs)
|
||||
{
|
||||
return rhs + lhs;
|
||||
}
|
||||
|
||||
constexpr SeqProxy&
|
||||
operator+=(std::uint32_t const& rhs)
|
||||
{
|
||||
value_ += rhs;
|
||||
return *this;
|
||||
}
|
||||
};
|
||||
} // namespace xrpl
|
||||
|
||||
Reference in New Issue
Block a user