From f3dbdf758f1509ca6c421da24339b2a621f959a2 Mon Sep 17 00:00:00 2001 From: Vlad Zolotarov Date: Sun, 28 Jun 2015 18:03:48 +0300 Subject: [PATCH] locator: abstract_replication_strategy: Comment out an unused member _keyspace back reference is not used at the moment. Not deleting since we may need it when we add more code (quite soon). Signed-off-by: Vlad Zolotarov --- locator/abstract_replication_strategy.hh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/locator/abstract_replication_strategy.hh b/locator/abstract_replication_strategy.hh index f1133187d4..ca4399965c 100644 --- a/locator/abstract_replication_strategy.hh +++ b/locator/abstract_replication_strategy.hh @@ -23,7 +23,8 @@ using token = dht::token; class abstract_replication_strategy { protected: sstring _ks_name; - keyspace* _keyspace = nullptr; + // TODO: Do we need this member at all? + //keyspace* _keyspace = nullptr; std::map _config_options; token_metadata& _token_metadata; snitch_ptr& _snitch;