[Mlir-commits] [mlir] 89cfae4 - [mlir] Add missing #include header for std::is_pointer

Haojian Wu llvmlistbot at llvm.org
Tue Apr 2 02:41:17 PDT 2024


Author: Haojian Wu
Date: 2024-04-02T11:41:04+02:00
New Revision: 89cfae41ecc043f8c47be4dea4b7c740d4f950b3

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

LOG: [mlir] Add missing #include header for std::is_pointer

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/mlir/include/mlir/IR/OwningOpRef.h b/mlir/include/mlir/IR/OwningOpRef.h
index eb4bf2dc67e3e7..0c35eae8de0964 100644
--- a/mlir/include/mlir/IR/OwningOpRef.h
+++ b/mlir/include/mlir/IR/OwningOpRef.h
@@ -13,6 +13,7 @@
 #ifndef MLIR_IR_OWNINGOPREF_H
 #define MLIR_IR_OWNINGOPREF_H
 
+#include <type_traits>
 #include <utility>
 
 namespace mlir {


        


More information about the Mlir-commits mailing list