Skip to content

Commit ace9ebd

Browse files
committed
use signed for arithemtic
1 parent 37682e7 commit ace9ebd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/include/mlir/Query/Matcher/Marshallers.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ class VariadicOperatorMatcherDescriptor : public MatcherDescriptor {
177177
}
178178

179179
std::vector<VariantMatcher> innerArgs;
180-
for (size_t i = 0, e = args.size(); i != e; ++i) {
180+
for (int64_t i = 0, e = args.size(); i != e; ++i) {
181181
const ParserValue &arg = args[i];
182182
const VariantValue &value = arg.value;
183183
if (!value.isMatcher()) {

0 commit comments

Comments
 (0)