From c765de6b9ff8c58e23d282122cacd85c224196f5 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Tue, 16 Dec 2014 17:02:34 -0800 Subject: [PATCH] common/hobject_t: fix whitespace Signed-off-by: Sage Weil --- src/common/hobject.h | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/common/hobject.h b/src/common/hobject.h index ea7a3b666f31e..c5f785c2dd8af 100644 --- a/src/common/hobject.h +++ b/src/common/hobject.h @@ -73,26 +73,26 @@ public: bool is_temp() const { return pool == POOL_IS_TEMP; } - + hobject_t() : snap(0), hash(0), max(false), pool(-1) { build_filestore_key_cache(); } hobject_t(object_t oid, const string& key, snapid_t snap, uint64_t hash, - int64_t pool, string nspace) : - oid(oid), snap(snap), hash(hash), max(false), - pool(pool), nspace(nspace), - key(oid.name == key ? string() : key) { - build_filestore_key_cache(); - } + int64_t pool, string nspace) + : oid(oid), snap(snap), hash(hash), max(false), + pool(pool), nspace(nspace), + key(oid.name == key ? string() : key) { + build_filestore_key_cache(); + } hobject_t(const sobject_t &soid, const string &key, uint32_t hash, - int64_t pool, string nspace) : - oid(soid.oid), snap(soid.snap), hash(hash), max(false), - pool(pool), nspace(nspace), - key(soid.oid.name == key ? string() : key) { - build_filestore_key_cache(); - } + int64_t pool, string nspace) + : oid(soid.oid), snap(soid.snap), hash(hash), max(false), + pool(pool), nspace(nspace), + key(soid.oid.name == key ? string() : key) { + build_filestore_key_cache(); + } /// @return min hobject_t ret s.t. ret.hash == this->hash hobject_t get_boundary() const { -- 2.39.5