File tree Expand file tree Collapse file tree 3 files changed +5
-14
lines changed
clang/include/clang/Parse Expand file tree Collapse file tree 3 files changed +5
-14
lines changed Original file line number Diff line number Diff line change 9
9
#ifndef LLVM_CLANG_PARSE_LOOPHINT_H
10
10
#define LLVM_CLANG_PARSE_LOOPHINT_H
11
11
12
- #include " clang/Basic/IdentifierTable.h"
13
12
#include " clang/Basic/SourceLocation.h"
14
- #include " clang/Sema/Ownership.h"
15
- #include " clang/Sema/ParsedAttr.h"
16
13
17
14
namespace clang {
18
15
16
+ class Expr ;
17
+ struct IdentifierLoc ;
18
+
19
19
// / Loop optimization hint for loop and unroll pragmas.
20
20
struct LoopHint {
21
21
// Source range of the directive.
Original file line number Diff line number Diff line change 13
13
#ifndef LLVM_CLANG_PARSE_PARSER_H
14
14
#define LLVM_CLANG_PARSE_PARSER_H
15
15
16
- #include " clang/AST/Availability.h"
17
- #include " clang/Basic/BitmaskEnum.h"
18
- #include " clang/Basic/OpenMPKinds.h"
19
16
#include " clang/Basic/OperatorPrecedence.h"
20
- #include " clang/Basic/Specifiers.h"
21
- #include " clang/Basic/TokenKinds.h"
22
17
#include " clang/Lex/CodeCompletionHandler.h"
23
18
#include " clang/Lex/Preprocessor.h"
24
- #include " clang/Sema/DeclSpec.h"
25
19
#include " clang/Sema/Sema.h"
26
20
#include " llvm/ADT/SmallVector.h"
27
21
#include " llvm/Frontend/OpenMP/OMPContext.h"
28
- #include " llvm/Support/Compiler.h"
29
- #include " llvm/Support/PrettyStackTrace.h"
30
22
#include " llvm/Support/SaveAndRestore.h"
31
- #include < memory>
32
23
#include < optional>
33
24
#include < stack>
34
25
Original file line number Diff line number Diff line change 15
15
#define LLVM_CLANG_PARSE_RAIIOBJECTSFORPARSER_H
16
16
17
17
#include " clang/Parse/ParseDiagnostic.h"
18
- #include " clang/Parse/Parser.h"
19
18
#include " clang/Sema/DelayedDiagnostic.h"
20
- #include " clang/Sema/ParsedTemplate.h"
21
19
#include " clang/Sema/Sema.h"
22
20
23
21
namespace clang {
22
+ class ParsedAttributes ;
23
+
24
24
// TODO: move ParsingClassDefinition here.
25
25
// TODO: move TentativeParsingAction here.
26
26
You can’t perform that action at this time.
0 commit comments