Skip to content

Commit efe4bfa

Browse files
[AST] Include clang/Basic/DiagnosticComment.h instead of clang/AST/CommentDiagnostic.h (#117499)
Since: commit d076608 Author: Richard Trieu <[email protected]> Date: Sat Dec 8 05:05:03 2018 +0000 clang/AST/CommentDiagnostic.h has been forwarding to clang/Basic/DiagnosticComment.h. This patch includes clang/Basic/DiagnosticComment.h instead of clang/AST/CommentDiagnostic.h.
1 parent 4873968 commit efe4bfa

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

clang/lib/AST/CommentLexer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
#include "clang/AST/CommentLexer.h"
1010
#include "clang/AST/CommentCommandTraits.h"
11-
#include "clang/AST/CommentDiagnostic.h"
1211
#include "clang/Basic/CharInfo.h"
12+
#include "clang/Basic/DiagnosticComment.h"
1313
#include "llvm/ADT/StringExtras.h"
1414
#include "llvm/ADT/StringSwitch.h"
1515
#include "llvm/Support/ConvertUTF.h"

clang/lib/AST/CommentParser.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88

99
#include "clang/AST/CommentParser.h"
1010
#include "clang/AST/CommentCommandTraits.h"
11-
#include "clang/AST/CommentDiagnostic.h"
1211
#include "clang/AST/CommentSema.h"
1312
#include "clang/Basic/CharInfo.h"
13+
#include "clang/Basic/DiagnosticComment.h"
1414
#include "clang/Basic/SourceManager.h"
1515
#include "llvm/Support/ErrorHandling.h"
1616

clang/lib/AST/CommentSema.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
#include "clang/AST/CommentSema.h"
1010
#include "clang/AST/Attr.h"
1111
#include "clang/AST/CommentCommandTraits.h"
12-
#include "clang/AST/CommentDiagnostic.h"
1312
#include "clang/AST/Decl.h"
1413
#include "clang/AST/DeclTemplate.h"
14+
#include "clang/Basic/DiagnosticComment.h"
1515
#include "clang/Basic/LLVM.h"
1616
#include "clang/Basic/SourceManager.h"
1717
#include "clang/Lex/Preprocessor.h"

clang/lib/Sema/SemaDecl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
#include "clang/AST/ASTLambda.h"
1717
#include "clang/AST/CXXInheritance.h"
1818
#include "clang/AST/CharUnits.h"
19-
#include "clang/AST/CommentDiagnostic.h"
2019
#include "clang/AST/Decl.h"
2120
#include "clang/AST/DeclCXX.h"
2221
#include "clang/AST/DeclObjC.h"
@@ -30,6 +29,7 @@
3029
#include "clang/AST/StmtCXX.h"
3130
#include "clang/AST/Type.h"
3231
#include "clang/Basic/Builtins.h"
32+
#include "clang/Basic/DiagnosticComment.h"
3333
#include "clang/Basic/PartialDiagnostic.h"
3434
#include "clang/Basic/SourceManager.h"
3535
#include "clang/Basic/TargetInfo.h"

0 commit comments

Comments
 (0)