[Mlir-commits] [mlir] e178b56 - [mlir] drop spurious semicolon

Alex Zinenko llvmlistbot at llvm.org
Tue Nov 2 07:15:48 PDT 2021


Author: Alex Zinenko
Date: 2021-11-02T15:15:03+01:00
New Revision: e178b56c12a6d1885b3dd899dbf3ceee526c6ba3

URL: https://github.com/llvm/llvm-project/commit/e178b56c12a6d1885b3dd899dbf3ceee526c6ba3
DIFF: https://github.com/llvm/llvm-project/commit/e178b56c12a6d1885b3dd899dbf3ceee526c6ba3.diff

LOG: [mlir] drop spurious semicolon

Added: 
    

Modified: 
    mlir/include/mlir/CAPI/IR.h

Removed: 
    


################################################################################
diff  --git a/mlir/include/mlir/CAPI/IR.h b/mlir/include/mlir/CAPI/IR.h
index a864175d01912..8366b0bce6d70 100644
--- a/mlir/include/mlir/CAPI/IR.h
+++ b/mlir/include/mlir/CAPI/IR.h
@@ -27,7 +27,7 @@ DEFINE_C_API_PTR_METHODS(MlirOperation, mlir::Operation)
 DEFINE_C_API_PTR_METHODS(MlirBlock, mlir::Block)
 DEFINE_C_API_PTR_METHODS(MlirOpPrintingFlags, mlir::OpPrintingFlags)
 DEFINE_C_API_PTR_METHODS(MlirRegion, mlir::Region)
-DEFINE_C_API_PTR_METHODS(MlirSymbolTable, mlir::SymbolTable);
+DEFINE_C_API_PTR_METHODS(MlirSymbolTable, mlir::SymbolTable)
 
 DEFINE_C_API_METHODS(MlirAttribute, mlir::Attribute)
 DEFINE_C_API_METHODS(MlirIdentifier, mlir::Identifier)


        


More information about the Mlir-commits mailing list