File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 23
23
#import " Firestore/Source/Local/FSTLevelDBQueryCache.h"
24
24
25
25
#include " Firestore/core/src/firebase/firestore/util/hard_assert.h"
26
+ #include " absl/base/macros.h"
26
27
#include " absl/strings/match.h"
27
28
#include " leveldb/write_batch.h"
28
29
@@ -108,11 +109,11 @@ + (void)runMigrationsWithTransaction:(firebase::firestore::local::LevelDbTransac
108
109
switch (currentVersion) {
109
110
case 0 :
110
111
EnsureTargetGlobal (transaction);
111
- // Fallthrough
112
+ ABSL_FALLTHROUGH_INTENDED;
112
113
case 1 :
113
114
// We're now guaranteed that the target global exists. We can safely add a count to it.
114
115
AddTargetCount (transaction);
115
- // Fallthrough
116
+ ABSL_FALLTHROUGH_INTENDED;
116
117
default :
117
118
if (currentVersion < kSchemaVersion ) {
118
119
SaveVersion (kSchemaVersion , transaction);
You can’t perform that action at this time.
0 commit comments