From 3eeb88cda27301275626f41144f34254cacc793a Mon Sep 17 00:00:00 2001 From: "Adam C. Emerson" Date: Thu, 28 Mar 2019 21:17:17 -0400 Subject: [PATCH] common: Update ceph_context.h to work without using namespace Signed-off-by: Adam C. Emerson --- src/common/ceph_context.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/ceph_context.h b/src/common/ceph_context.h index a124059e5e8ba..6e6832d4f0b41 100644 --- a/src/common/ceph_context.h +++ b/src/common/ceph_context.h @@ -201,7 +201,7 @@ public: bool check_experimental_feature_enabled(const std::string& feature, std::ostream *message); - PluginRegistry *get_plugin_registry() { + ceph::PluginRegistry *get_plugin_registry() { return _plugin_registry; } @@ -313,7 +313,7 @@ private: ceph::spinlock _feature_lock; std::set _experimental_features; - PluginRegistry *_plugin_registry; + ceph::PluginRegistry* _plugin_registry; md_config_obs_t *_lockdep_obs; -- 2.39.5