Skip to content

Commit 6a23442

Browse files
authored
Fix inconsistent argument names in .h/.cc files (#9515)
1 parent 871518a commit 6a23442

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Firestore/core/src/index/index_entry.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,7 @@ class IndexEntry : public util::Comparable<IndexEntry> {
6262
size_t Hash() const;
6363

6464
std::string ToString() const;
65-
friend std::ostream& operator<<(std::ostream& out,
66-
const IndexEntry& database_id);
65+
friend std::ostream& operator<<(std::ostream& out, const IndexEntry& entry);
6766

6867
private:
6968
int32_t index_id_;

Firestore/core/src/local/leveldb_index_manager.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ class LevelDbIndexManager : public IndexManager {
6565
absl::optional<model::FieldIndex> GetFieldIndex(core::Target target) override;
6666

6767
absl::optional<std::vector<model::DocumentKey>> GetDocumentsMatchingTarget(
68-
model::FieldIndex fieldIndex, core::Target target) override;
68+
model::FieldIndex field_index, core::Target target) override;
6969

7070
absl::optional<std::string> GetNextCollectionGroupToUpdate() override;
7171

0 commit comments

Comments
 (0)