[llvm-branch-commits] [mlir] c1d6de4 - [mlir][CAPI] Add the missing <stdbool.h> in Support.h

Mehdi Amini via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Sat Dec 19 21:06:50 PST 2020


Author: Gnimuc
Date: 2020-12-20T05:01:49Z
New Revision: c1d6de41a9d9fc34c3de580cfe7c287d8b48b417

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

LOG: [mlir][CAPI] Add the missing <stdbool.h> in Support.h

This was likely an oversight in https://reviews.llvm.org/D92292

Reviewed By: stellaraccident

Differential Revision: https://reviews.llvm.org/D93588

Added: 
    

Modified: 
    mlir/include/mlir-c/Support.h

Removed: 
    


################################################################################
diff  --git a/mlir/include/mlir-c/Support.h b/mlir/include/mlir-c/Support.h
index 558b68f9d8d0..072b96051e01 100644
--- a/mlir/include/mlir-c/Support.h
+++ b/mlir/include/mlir-c/Support.h
@@ -15,6 +15,7 @@
 #ifndef MLIR_C_SUPPORT_H
 #define MLIR_C_SUPPORT_H
 
+#include <stdbool.h>
 #include <stddef.h>
 #include <stdint.h>
 


        


More information about the llvm-branch-commits mailing list