File tree Expand file tree Collapse file tree 2 files changed +12
-11
lines changed
lldb/source/Plugins/TypeSystem/Swift Expand file tree Collapse file tree 2 files changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -125,17 +125,6 @@ class SwiftASTContext : public TypeSystemSwift {
125
125
public:
126
126
typedef std::set<TypeOrDecl, EitherComparator> TypesOrDecls;
127
127
128
- class LanguageFlags {
129
- public:
130
- enum : uint64_t {
131
- eIsIndirectEnumCase = 0x1ULL ,
132
- eIgnoreInstancePointerness = 0x2ULL
133
- };
134
-
135
- private:
136
- LanguageFlags () = delete ;
137
- };
138
-
139
128
// / Provide the global LLVMContext.
140
129
static llvm::LLVMContext &GetGlobalLLVMContext ();
141
130
Original file line number Diff line number Diff line change @@ -97,6 +97,18 @@ class TypeSystemSwift : public TypeSystem {
97
97
static ConstString GetPluginNameStatic ();
98
98
// / \}
99
99
100
+ class LanguageFlags {
101
+ public:
102
+ enum : uint64_t {
103
+ eIsIndirectEnumCase = 0x1ULL ,
104
+ // FIXME: This appears to be unused.
105
+ eIgnoreInstancePointerness = 0x2ULL
106
+ };
107
+
108
+ private:
109
+ LanguageFlags () = delete ;
110
+ };
111
+
100
112
static LanguageSet GetSupportedLanguagesForTypes ();
101
113
virtual SwiftASTContext *GetSwiftASTContext () = 0;
102
114
virtual Module *GetModule () const = 0;
You can’t perform that action at this time.
0 commit comments