File tree 1 file changed +4
-2
lines changed
mlir/lib/Tools/PDLL/Parser
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -756,7 +756,9 @@ Parser::parseUserConstraintDecl(bool isInline) {
756
756
// Constraints and rewrites have very similar formats, dispatch to a shared
757
757
// interface for parsing.
758
758
return parseUserConstraintOrRewriteDecl<ast::UserConstraintDecl>(
759
- [&](auto &&...args ) { return parseUserPDLLConstraintDecl (args...); },
759
+ [&](auto &&...args ) {
760
+ return this ->parseUserPDLLConstraintDecl (args...);
761
+ },
760
762
ParserContext::Constraint, " constraint" , isInline);
761
763
}
762
764
@@ -822,7 +824,7 @@ FailureOr<ast::UserRewriteDecl *> Parser::parseUserRewriteDecl(bool isInline) {
822
824
// Constraints and rewrites have very similar formats, dispatch to a shared
823
825
// interface for parsing.
824
826
return parseUserConstraintOrRewriteDecl<ast::UserRewriteDecl>(
825
- [&](auto &&...args ) { return parseUserPDLLRewriteDecl (args...); },
827
+ [&](auto &&...args ) { return this -> parseUserPDLLRewriteDecl (args...); },
826
828
ParserContext::Rewrite, " rewrite" , isInline);
827
829
}
828
830
You can’t perform that action at this time.
0 commit comments