mirror of
https://github.com/ceph/ceph
synced 2025-04-01 23:02:17 +00:00
common: buffer::ptr::cmp() is a const function
Signed-off-by: David Zafman <david.zafman@inktank.com>
This commit is contained in:
parent
34eb549cd4
commit
e1bfed52f9
@ -664,7 +664,7 @@ static uint32_t simple_spinlock_t buffer_debug_lock = SIMPLE_SPINLOCK_INITIALIZE
|
||||
return _raw->len - _len;
|
||||
}
|
||||
|
||||
int buffer::ptr::cmp(const ptr& o)
|
||||
int buffer::ptr::cmp(const ptr& o) const
|
||||
{
|
||||
int l = _len < o._len ? _len : o._len;
|
||||
if (l) {
|
||||
|
@ -208,7 +208,7 @@ public:
|
||||
|
||||
unsigned wasted();
|
||||
|
||||
int cmp(const ptr& o);
|
||||
int cmp(const ptr& o) const;
|
||||
bool is_zero() const;
|
||||
|
||||
// modifiers
|
||||
|
Loading…
Reference in New Issue
Block a user