diff options
author | Adam C. Emerson <aemerson@redhat.com> | 2017-12-23 06:00:22 +0100 |
---|---|---|
committer | Adam C. Emerson <aemerson@redhat.com> | 2018-01-10 20:02:09 +0100 |
commit | 2e70bc3703d2733381d9f30824c4172a302eb81c (patch) | |
tree | c302541ee8baf849a2d7492a1429e94831be13a9 /src/librados/IoCtxImpl.cc | |
parent | kv: Use unqualified encode/decode (diff) | |
download | ceph-2e70bc3703d2733381d9f30824c4172a302eb81c.tar.xz ceph-2e70bc3703d2733381d9f30824c4172a302eb81c.zip |
librados: Use unqualified encode/decode
This is a portion of the namespace project.
Signed-off-by: Adam C. Emerson <aemerson@redhat.com>
Diffstat (limited to 'src/librados/IoCtxImpl.cc')
-rw-r--r-- | src/librados/IoCtxImpl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librados/IoCtxImpl.cc b/src/librados/IoCtxImpl.cc index 9e3dbffdf2d..e448df27258 100644 --- a/src/librados/IoCtxImpl.cc +++ b/src/librados/IoCtxImpl.cc @@ -1493,7 +1493,7 @@ int librados::IoCtxImpl::mapext(const object_t& oid, return r; bufferlist::iterator iter = bl.begin(); - ::decode(m, iter); + decode(m, iter); return m.size(); } |