[clang-tools-extra] 2a0870c - [clang-tidy] Add missing header from 6bd98b4f2d
Nathan James via cfe-commits
cfe-commits at lists.llvm.org
Sat Aug 27 11:59:28 PDT 2022
Author: Nathan James
Date: 2022-08-27T19:59:16+01:00
New Revision: 2a0870c9d38d034b39d7cfa2a9929ff2819ecebd
URL: https://github.com/llvm/llvm-project/commit/2a0870c9d38d034b39d7cfa2a9929ff2819ecebd
DIFF: https://github.com/llvm/llvm-project/commit/2a0870c9d38d034b39d7cfa2a9929ff2819ecebd.diff
LOG: [clang-tidy] Add missing header from 6bd98b4f2d
Added:
Modified:
clang-tools-extra/clang-tidy/bugprone/AssignmentInIfConditionCheck.cpp
Removed:
################################################################################
diff --git a/clang-tools-extra/clang-tidy/bugprone/AssignmentInIfConditionCheck.cpp b/clang-tools-extra/clang-tidy/bugprone/AssignmentInIfConditionCheck.cpp
index 590505c1f47b..05f0ae74282e 100644
--- a/clang-tools-extra/clang-tidy/bugprone/AssignmentInIfConditionCheck.cpp
+++ b/clang-tools-extra/clang-tidy/bugprone/AssignmentInIfConditionCheck.cpp
@@ -8,6 +8,7 @@
#include "AssignmentInIfConditionCheck.h"
#include "clang/AST/ASTContext.h"
+#include "clang/AST/RecursiveASTVisitor.h"
#include "clang/ASTMatchers/ASTMatchFinder.h"
using namespace clang::ast_matchers;
More information about the cfe-commits
mailing list