[Mlir-commits] [mlir] d2d93a3 - Apply clang-tidy fixes for misc-include-cleaner in AST.cpp (NFC)
Mehdi Amini
llvmlistbot at llvm.org
Sun Oct 22 14:24:49 PDT 2023
Author: Mehdi Amini
Date: 2023-10-22T14:23:50-07:00
New Revision: d2d93a3365c912030a84814b0b2a22a70835c4f3
URL: https://github.com/llvm/llvm-project/commit/d2d93a3365c912030a84814b0b2a22a70835c4f3
DIFF: https://github.com/llvm/llvm-project/commit/d2d93a3365c912030a84814b0b2a22a70835c4f3.diff
LOG: Apply clang-tidy fixes for misc-include-cleaner in AST.cpp (NFC)
Added:
Modified:
mlir/examples/toy/Ch2/parser/AST.cpp
Removed:
################################################################################
diff --git a/mlir/examples/toy/Ch2/parser/AST.cpp b/mlir/examples/toy/Ch2/parser/AST.cpp
index 2eaabb1b529e1b8..2546f2a9725d6e0 100644
--- a/mlir/examples/toy/Ch2/parser/AST.cpp
+++ b/mlir/examples/toy/Ch2/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