We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 631d4c8 commit af21292Copy full SHA for af21292
Firestore/core/src/core/field_filter.cc
@@ -30,6 +30,7 @@
30
#include "Firestore/core/src/model/document.h"
31
#include "Firestore/core/src/model/value_util.h"
32
#include "Firestore/core/src/util/exception.h"
33
+#include "Firestore/core/src/util/hard_assert.h"
34
#include "Firestore/core/src/util/hashing.h"
35
#include "absl/algorithm/container.h"
36
#include "absl/strings/str_cat.h"
@@ -115,7 +116,7 @@ FieldFilter FieldFilter::Create(
115
116
}
117
118
FieldFilter::FieldFilter(const Filter& other) : Filter(other) {
- HARD_ASSERT(IsAFieldFilter());
119
+ HARD_ASSERT(other.IsAFieldFilter());
120
121
122
FieldFilter::FieldFilter(std::shared_ptr<const Filter::Rep> rep)
0 commit comments