Skip to content

Commit bb9b964

Browse files
committed
[Concepts] Fix circular AST->Sema dependency in ASTConcept.cpp
Remove inappropriate Sema include in ASTConcept.cpp introduced by D72552 for the finer-grained includes actually needed.
1 parent d9e6196 commit bb9b964

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

clang/lib/AST/ASTConcept.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@
1414

1515
#include "clang/AST/ASTConcept.h"
1616
#include "clang/AST/ASTContext.h"
17-
#include "clang/Sema/SemaConcept.h"
17+
#include "clang/AST/Decl.h"
18+
#include "clang/AST/TemplateBase.h"
19+
#include "llvm/ADT/ArrayRef.h"
20+
#include "llvm/ADT/FoldingSet.h"
1821
using namespace clang;
1922

2023
ASTConstraintSatisfaction::ASTConstraintSatisfaction(const ASTContext &C,

0 commit comments

Comments
 (0)