diff options
author | Danny Al-Gaaf <danny.al-gaaf@bisect.de> | 2013-04-08 14:06:05 +0200 |
---|---|---|
committer | Danny Al-Gaaf <danny.al-gaaf@bisect.de> | 2013-04-08 14:06:05 +0200 |
commit | 003194942720885c91b51d10a11c6004dd71fa51 (patch) | |
tree | d0d46eb0ee10794e4b4fe92125c990c0f5190815 /src/common/ceph_context.h | |
parent | mon: make 'osd crush move ...' idempotent (diff) | |
download | ceph-003194942720885c91b51d10a11c6004dd71fa51.tar.xz ceph-003194942720885c91b51d10a11c6004dd71fa51.zip |
md_config_t: change from class to struct as the name indicates
Change md_config_t from class to struct to fix some issues
from clang. The name indicates it's a struct so change it to
struct and unify the usaged type.
Signed-off-by: Danny Al-Gaaf <danny.al-gaaf@bisect.de>
Diffstat (limited to 'src/common/ceph_context.h')
-rw-r--r-- | src/common/ceph_context.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/ceph_context.h b/src/common/ceph_context.h index 7ace17fa9bd..1678680fa6d 100644 --- a/src/common/ceph_context.h +++ b/src/common/ceph_context.h @@ -25,7 +25,7 @@ class AdminSocket; class CephContextServiceThread; class PerfCountersCollection; class md_config_obs_t; -class md_config_t; +struct md_config_t; class CephContextHook; class CryptoNone; class CryptoAES; |