aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/Source/Local
diff options
context:
space:
mode:
authorGravatar Gil <mcg@google.com>2018-05-22 16:39:45 -0700
committerGravatar GitHub <noreply@github.com>2018-05-22 16:39:45 -0700
commitfb0ba40c00b9d777ccb0bd70e2ebaee1386af4e6 (patch)
treead31b7b6dca889a400bc79f56ba85adc36d796c0 /Firestore/Source/Local
parentd439bbccd4b90583a89d209d2cc81308aabca8ac (diff)
Remove extraneous braces (#1315)
Diffstat (limited to 'Firestore/Source/Local')
-rw-r--r--Firestore/Source/Local/FSTLevelDBKey.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Firestore/Source/Local/FSTLevelDBKey.mm b/Firestore/Source/Local/FSTLevelDBKey.mm
index e23f5b7..1fe0396 100644
--- a/Firestore/Source/Local/FSTLevelDBKey.mm
+++ b/Firestore/Source/Local/FSTLevelDBKey.mm
@@ -280,7 +280,7 @@ BOOL ReadDocumentKey(Slice *contents, FSTDocumentKey *__strong *result) {
Slice completeSegments = *contents;
std::string segment;
- std::vector<std::string> path_segments{};
+ std::vector<std::string> path_segments;
for (;;) {
// Advance a temporary slice to avoid advancing contents into the next key component which may
// not be a path segment.