refactor(block_cache): east const

This commit is contained in:
Marcus Holland-Moritz 2025-03-16 17:13:31 +01:00
parent a3182ae851
commit 848d346cdf

View File

@ -147,7 +147,7 @@ class block_request {
block_request(block_request&&) = default;
block_request& operator=(block_request&&) = default;
bool operator<(const block_request& rhs) const { return end_ < rhs.end_; }
bool operator<(block_request const& rhs) const { return end_ < rhs.end_; }
size_t end() const { return end_; }