File tree Expand file tree Collapse file tree 7 files changed +8
-6
lines changed Expand file tree Collapse file tree 7 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 17
17
#ifndef SWIFT_AST_FUNCTION_REF_KIND_H
18
18
#define SWIFT_AST_FUNCTION_REF_KIND_H
19
19
20
+ #include " llvm/ADT/StringRef.h"
21
+
20
22
namespace swift {
21
23
22
24
// / Describes how a function is referenced within an expression node,
@@ -43,7 +45,7 @@ enum class FunctionRefKind : unsigned {
43
45
44
46
// / Produce a string describing a function reference kind, for
45
47
// / debugging purposes.
46
- StringRef getFunctionRefKindStr (FunctionRefKind refKind);
48
+ llvm:: StringRef getFunctionRefKindStr (FunctionRefKind refKind);
47
49
48
50
}
49
51
File renamed without changes.
Original file line number Diff line number Diff line change 16
16
//
17
17
// ===----------------------------------------------------------------------===//
18
18
19
- #include " CSFix.h"
20
19
#include " CSDiagnostics.h"
21
20
#include " ConstraintSystem.h"
22
21
#include " swift/AST/Expr.h"
25
24
#include " swift/AST/Types.h"
26
25
#include " swift/Basic/SourceManager.h"
27
26
#include " swift/Sema/ConstraintLocator.h"
27
+ #include " swift/Sema/CSFix.h"
28
28
#include " swift/Sema/OverloadChoice.h"
29
29
#include " llvm/ADT/SmallString.h"
30
30
#include " llvm/Support/raw_ostream.h"
Original file line number Diff line number Diff line change 16
16
// ===----------------------------------------------------------------------===//
17
17
18
18
#include " CSDiagnostics.h"
19
- #include " CSFix.h"
20
19
#include " ConstraintSystem.h"
21
20
#include " swift/AST/ExistentialLayout.h"
22
21
#include " swift/AST/GenericEnvironment.h"
28
27
#include " swift/AST/ProtocolConformance.h"
29
28
#include " swift/Basic/StringExtras.h"
30
29
#include " swift/ClangImporter/ClangModule.h"
30
+ #include " swift/Sema/CSFix.h"
31
31
#include " swift/Sema/IDETypeChecking.h"
32
32
#include " llvm/ADT/SetVector.h"
33
33
#include " llvm/Support/Compiler.h"
Original file line number Diff line number Diff line change 18
18
#ifndef SWIFT_SEMA_CONSTRAINT_H
19
19
#define SWIFT_SEMA_CONSTRAINT_H
20
20
21
- #include " CSFix.h"
22
21
#include " swift/AST/FunctionRefKind.h"
23
22
#include " swift/AST/Identifier.h"
24
23
#include " swift/AST/Type.h"
@@ -43,6 +42,7 @@ class TypeVariableType;
43
42
44
43
namespace constraints {
45
44
45
+ class ConstraintFix ;
46
46
class ConstraintLocator ;
47
47
class ConstraintSystem ;
48
48
enum class TrailingClosureMatching ;
Original file line number Diff line number Diff line change 17
17
// ===----------------------------------------------------------------------===//
18
18
#include " ConstraintSystem.h"
19
19
#include " CSDiagnostics.h"
20
- #include " CSFix.h"
21
20
#include " TypeChecker.h"
22
21
#include " TypeCheckType.h"
23
22
#include " swift/AST/Initializer.h"
24
23
#include " swift/AST/GenericEnvironment.h"
25
24
#include " swift/AST/ParameterList.h"
26
25
#include " swift/AST/TypeCheckRequests.h"
27
26
#include " swift/Basic/Statistic.h"
27
+ #include " swift/Sema/CSFix.h"
28
28
#include " swift/Sema/ConstraintGraph.h"
29
29
#include " swift/Sema/SolutionResult.h"
30
30
#include " llvm/ADT/SetVector.h"
Original file line number Diff line number Diff line change 18
18
#ifndef SWIFT_SEMA_CONSTRAINT_SYSTEM_H
19
19
#define SWIFT_SEMA_CONSTRAINT_SYSTEM_H
20
20
21
- #include " CSFix.h"
22
21
#include " Constraint.h"
23
22
#include " swift/AST/ASTContext.h"
24
23
#include " swift/AST/ASTNode.h"
35
34
#include " swift/Sema/ConstraintGraph.h"
36
35
#include " swift/Sema/ConstraintGraphScope.h"
37
36
#include " swift/Sema/ConstraintLocator.h"
37
+ #include " swift/Sema/CSFix.h"
38
38
#include " swift/Sema/OverloadChoice.h"
39
39
#include " swift/Sema/SolutionResult.h"
40
40
#include " llvm/ADT/MapVector.h"
You can’t perform that action at this time.
0 commit comments