From 4e446a9de098f0e7e54b7ce999c5c30ea1494d8b Mon Sep 17 00:00:00 2001 From: "Adam C. Emerson" Date: Thu, 28 Mar 2019 21:26:40 -0400 Subject: [PATCH] common: Update histogram.h to work without using namespace Signed-off-by: Adam C. Emerson --- src/common/histogram.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/common/histogram.h b/src/common/histogram.h index 139450b74a1..828ed47c4e2 100644 --- a/src/common/histogram.h +++ b/src/common/histogram.h @@ -118,9 +118,9 @@ public: /// decay histogram by N bits (default 1, for a halflife) void decay(int bits = 1); - void dump(Formatter *f) const; - void encode(bufferlist &bl) const; - void decode(bufferlist::const_iterator &bl); + void dump(ceph::Formatter *f) const; + void encode(ceph::buffer::list &bl) const; + void decode(ceph::buffer::list::const_iterator &bl); static void generate_test_instances(std::list& o); }; WRITE_CLASS_ENCODER(pow2_hist_t) -- 2.39.5