From: Noah Watkins Date: Fri, 11 Mar 2016 20:37:20 +0000 (-0800) Subject: rados: add ceph:: namespace to bufferlist type X-Git-Tag: v10.1.0~99^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=88f138071c442b928bb01bd3efbeace5531f3c03;p=ceph.git rados: add ceph:: namespace to bufferlist type After a fresh install, applications that had been including rados.hpp cannot resolve bufferlist, which is in ceph:: scope. Signed-off-by: Noah Watkins --- diff --git a/src/include/rados/rados_types.hpp b/src/include/rados/rados_types.hpp index 2e3477bef1d4..d10e5f5b109f 100644 --- a/src/include/rados/rados_types.hpp +++ b/src/include/rados/rados_types.hpp @@ -100,7 +100,7 @@ struct err_t { }; struct shard_info_t : err_t { - std::map attrs; + std::map attrs; uint64_t size = -1; bool omap_digest_present = false; uint32_t omap_digest = 0;