Fix missing return statement warning in PatternMatch.h. NFC.
mlir/include/mlir/IR/PatternMatch.h:983:3: warning: no return statement in function returning non-void [-Wreturn-type]
Differential D123756
[MLIR] Fix missing return statement warning in PatternMatch.h bondhugula on Apr 13 2022, 7:42 PM. Authored by
Details Fix missing return statement warning in PatternMatch.h. NFC. mlir/include/mlir/IR/PatternMatch.h:983:3: warning: no return statement in function returning non-void [-Wreturn-type]
Diff Detail
Event TimelineComment Actions Wouldn't have expected this given the static assert, but weird.
|
This technically returns a std::string, can we use {} or something instead?