mirror of
https://github.com/mhx/dwarfs.git
synced 2025-09-09 12:28:13 -04:00
refactor(block_cache): east const
This commit is contained in:
parent
a3182ae851
commit
848d346cdf
@ -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_; }
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user