respond to comments

This commit is contained in:
Mayukha Vadari
2026-07-28 17:15:51 -04:00
parent 79062e3b22
commit 76dfc0bee6
4 changed files with 3 additions and 23 deletions

View File

@@ -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