[Mlir-commits] [mlir] 904c5b4 - Apply clang-tidy fixes for misc-include-cleaner in AST.cpp (NFC)

Mehdi Amini llvmlistbot at llvm.org
Sun Oct 22 14:24:50 PDT 2023


Author: Mehdi Amini
Date: 2023-10-22T14:24:18-07:00
New Revision: 904c5b484ebf0936ef8c4a78e9fc8da615fb52d8

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

LOG: Apply clang-tidy fixes for misc-include-cleaner in AST.cpp (NFC)

Added: 
    

Modified: 
    mlir/examples/toy/Ch1/parser/AST.cpp

Removed: 
    


################################################################################
diff  --git a/mlir/examples/toy/Ch1/parser/AST.cpp b/mlir/examples/toy/Ch1/parser/AST.cpp
index 2eaabb1b529e1b8..2546f2a9725d6e0 100644
--- a/mlir/examples/toy/Ch1/parser/AST.cpp
+++ b/mlir/examples/toy/Ch1/parser/AST.cpp
@@ -12,9 +12,12 @@
 
 #include "toy/AST.h"
 
+#include "llvm/ADT/STLExtras.h"
 #include "llvm/ADT/Twine.h"
 #include "llvm/ADT/TypeSwitch.h"
+#include "llvm/Support/Casting.h"
 #include "llvm/Support/raw_ostream.h"
+#include <string>
 
 using namespace toy;
 


        


More information about the Mlir-commits mailing list