[Mlir-commits] [llvm] [mlir] [mlir][Python] create MLIRPythonSupport (PR #171775)

Jakub Kuderski llvmlistbot at llvm.org
Mon Dec 29 06:40:26 PST 2025


================
@@ -323,24 +319,44 @@ class PyLocation : public BaseContextObject {
   MlirLocation loc;
 };
 
+enum PyMlirDiagnosticSeverity : std::underlying_type<
+    MlirDiagnosticSeverity>::type {
----------------
kuhar wrote:

```suggestion
enum PyMlirDiagnosticSeverity : std::underlying_type_t<
    MlirDiagnosticSeverity> {
```
also below

https://github.com/llvm/llvm-project/pull/171775


More information about the Mlir-commits mailing list