aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/Source/Remote/FSTWatchChange.mm
diff options
context:
space:
mode:
authorGravatar zxu <zxu@google.com>2018-03-27 14:33:39 -0400
committerGravatar GitHub <noreply@github.com>2018-03-27 14:33:39 -0400
commitcb8c4b6b1f1ad213a5b3272e2c2e94f755bbabf9 (patch)
treeeb3eeddefb5fca423f59432933721d6d47100aa5 /Firestore/Source/Remote/FSTWatchChange.mm
parenta335d78a62c213b1ae6465bad28aaedfafd828bc (diff)
port C++ DocumentKey to the rest of Firestore code (#977)
* port C++ DocumentKey to API's and Core's * address changes * address changes * fix Hash return types
Diffstat (limited to 'Firestore/Source/Remote/FSTWatchChange.mm')
-rw-r--r--Firestore/Source/Remote/FSTWatchChange.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Firestore/Source/Remote/FSTWatchChange.mm b/Firestore/Source/Remote/FSTWatchChange.mm
index 2c1a916..284e980 100644
--- a/Firestore/Source/Remote/FSTWatchChange.mm
+++ b/Firestore/Source/Remote/FSTWatchChange.mm
@@ -70,7 +70,7 @@ NS_ASSUME_NONNULL_BEGIN
- (NSUInteger)hash {
NSUInteger hash = self.updatedTargetIDs.hash;
hash = hash * 31 + self.removedTargetIDs.hash;
- hash = hash * 31 + std::hash<std::string>{}(self.documentKey.ToString());
+ hash = hash * 31 + self.documentKey.Hash();
hash = hash * 31 + self.document.hash;
return hash;
}