diff options
author | Richard Trieu <rtrieu@google.com> | 2018-12-14 03:35:10 +0000 |
---|---|---|
committer | Richard Trieu <rtrieu@google.com> | 2018-12-14 03:35:10 +0000 |
commit | 0f25c747a32a7968678333cb412c986b2ecc4877 (patch) | |
tree | 224d3589ea9603aed616b8da77dfa60cd52ff37d /clang/lib/Parse/ParseDecl.cpp | |
parent | f464a476d07fd278a18ef5b63121bf6b4e10589a (diff) | |
download | llvm-0f25c747a32a7968678333cb412c986b2ecc4877.zip llvm-0f25c747a32a7968678333cb412c986b2ecc4877.tar.gz llvm-0f25c747a32a7968678333cb412c986b2ecc4877.tar.bz2 |
Fix up diagnostics.
Move some diagnostics around between Diagnostic*Kinds.td files. Diagnostics
used in multiple places were moved to DiagnosticCommonKinds.td. Diagnostics
listed in the wrong place (ie, Sema diagnostics listed in
DiagnosticsParseKinds.td) were moved to the correct places. One diagnostic
split into two so that the diagnostic string is in the .td file instead of in
code. Cleaned up the diagnostic includes after all the changes.
llvm-svn: 349125
Diffstat (limited to 'clang/lib/Parse/ParseDecl.cpp')
-rw-r--r-- | clang/lib/Parse/ParseDecl.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/lib/Parse/ParseDecl.cpp b/clang/lib/Parse/ParseDecl.cpp index caf443d..7538b63 100644 --- a/clang/lib/Parse/ParseDecl.cpp +++ b/clang/lib/Parse/ParseDecl.cpp @@ -24,7 +24,6 @@ #include "clang/Sema/Lookup.h" #include "clang/Sema/ParsedTemplate.h" #include "clang/Sema/Scope.h" -#include "clang/Sema/SemaDiagnostic.h" #include "llvm/ADT/Optional.h" #include "llvm/ADT/SmallSet.h" #include "llvm/ADT/SmallString.h" |