Now that MLIR is built with C++17, use the standard library equivalent of
llvm::is_invocable: std::is_invocable.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Comment Actions
Thanks!
mlir/include/mlir/Transforms/DialectConversion.h | ||
---|---|---|
765 | This reminds me that we can use the _v versions of many of the STL templates too now. |
Comment Actions
The only callers outside of mlir are just the ADT unit tests for the trait - so I'll mark it as deprecated or remove it outright from ADT as a follow-up patch if that works with you.
mlir/include/mlir/Transforms/DialectConversion.h | ||
---|---|---|
765 | Yep, might as well make the switch if I'm already touching this neighborhood of code. :) |
This reminds me that we can use the _v versions of many of the STL templates too now.