From 48e7188b039959dec0f6c0f8964982ca348559a7 Mon Sep 17 00:00:00 2001 From: "Adam C. Emerson" Date: Thu, 28 Mar 2019 21:26:23 -0400 Subject: [PATCH] common: Update options.h to work without using namespace Signed-off-by: Adam C. Emerson --- src/common/options.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/common/options.h b/src/common/options.h index 3f1cc4c9465..ac23560d267 100644 --- a/src/common/options.h +++ b/src/common/options.h @@ -220,7 +220,7 @@ struct Option { } } - void dump_value(const char *field_name, const value_t &v, Formatter *f) const; + void dump_value(const char *field_name, const value_t &v, ceph::Formatter *f) const; // Validate and potentially modify incoming string value int pre_validate(std::string *new_value, std::string *err) const; @@ -361,8 +361,8 @@ struct Option { return *this; } - void dump(Formatter *f) const; - void print(ostream *out) const; + void dump(ceph::Formatter *f) const; + void print(std::ostream *out) const; bool has_flag(flag_t f) const { return flags & f; -- 2.39.5