From 05c1b8344d8149f1b9f5b6ec7ca59af952c18da2 Mon Sep 17 00:00:00 2001 From: Christopher Dunn Date: Wed, 21 Jan 2015 15:43:48 -0600 Subject: [PATCH] drop this-> (team preference) --- src/lib_json/json_value.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/lib_json/json_value.cpp b/src/lib_json/json_value.cpp index f9e733f..da5e35a 100644 --- a/src/lib_json/json_value.cpp +++ b/src/lib_json/json_value.cpp @@ -1019,7 +1019,7 @@ Value Value::removeMember(const std::string& key) { } bool Value::removeIndex(ArrayIndex index, Value* removed) { - if (this->type_ != arrayValue) { + if (type_ != arrayValue) { return false; } #ifdef JSON_VALUE_USE_INTERNAL_MAP @@ -1027,21 +1027,21 @@ bool Value::removeIndex(ArrayIndex index, Value* removed) { return false; #else CZString key(index); - ObjectValues::iterator it = this->value_.map_->find(key); - if (it == this->value_.map_->end()) { + ObjectValues::iterator it = value_.map_->find(key); + if (it == value_.map_->end()) { return false; } *removed = it->second; - ArrayIndex oldSize = this->size(); + ArrayIndex oldSize = size(); // shift left all items left, into the place of the "removed" for (ArrayIndex i=index; ivalue_.map_)[key] = (*this)[i+1]; + (*value_.map_)[key] = (*this)[i+1]; } // erase the last one ("leftover") CZString keyLast(oldSize-1); - ObjectValues::iterator itLast = this->value_.map_->find(keyLast); - this->value_.map_->erase(itLast); + ObjectValues::iterator itLast = value_.map_->find(keyLast); + value_.map_->erase(itLast); return true; #endif }