From: Adam C. Emerson Date: Fri, 29 Mar 2019 01:17:17 +0000 (-0400) Subject: common: Update ceph_context.h to work without using namespace X-Git-Tag: v15.0.0~19^2~34 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=3eeb88cda27301275626f41144f34254cacc793a;p=ceph.git common: Update ceph_context.h to work without using namespace Signed-off-by: Adam C. Emerson --- diff --git a/src/common/ceph_context.h b/src/common/ceph_context.h index a124059e5e8..6e6832d4f0b 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;