File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Firestore.xcodeproj/xcshareddata/xcschemes Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 27
27
selectedDebuggerIdentifier = " Xcode.DebuggerFoundation.Debugger.LLDB"
28
28
selectedLauncherIdentifier = " Xcode.DebuggerFoundation.Launcher.LLDB"
29
29
enableASanStackUseAfterReturn = " YES"
30
- enableThreadSanitizer = " YES"
31
30
shouldUseLaunchSchemeArgsEnv = " YES" >
32
31
<Testables >
33
32
<TestableReference
Original file line number Diff line number Diff line change 20
20
#import < FirebaseFirestore/FIRDocumentReference.h>
21
21
#import < FirebaseFirestore/FIRSnapshotMetadata.h>
22
22
23
+ #include < string>
24
+
23
25
#import " Firestore/Source/API/FIRCollectionReference+Internal.h"
24
26
#import " Firestore/Source/API/FIRDocumentReference+Internal.h"
25
27
#import " Firestore/Source/API/FIRDocumentSnapshot+Internal.h"
102
104
hasPendingWrites ? FSTDocumentStateLocalMutations
103
105
: FSTDocumentStateSynced)];
104
106
if (hasPendingWrites) {
105
- const absl::string_view documentKey = util::StringFormat (" %s/%s" , path, key);
107
+ const std::string documentKey = util::StringFormat (" %s/%s" , path, key);
106
108
mutatedKeys = mutatedKeys.insert (testutil::Key (documentKey));
107
109
}
108
110
}
118
120
changeWithDocument: docToAdd
119
121
type: FSTDocumentViewChangeTypeAdded]];
120
122
if (hasPendingWrites) {
121
- const absl::string_view documentKey = util::StringFormat (" %s/%s" , path, key);
123
+ const std::string documentKey = util::StringFormat (" %s/%s" , path, key);
122
124
mutatedKeys = mutatedKeys.insert (testutil::Key (documentKey));
123
125
}
124
126
}
You can’t perform that action at this time.
0 commit comments