Skip to content

Commit 95982dd

Browse files
committed
Remove unused LanguageFlag (NFC)
1 parent 813094e commit 95982dd

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

lldb/source/Plugins/TypeSystem/Swift/SwiftASTContext.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7057,7 +7057,6 @@ CompilerType SwiftASTContext::GetChildCompilerTypeAtIndex(
70577057
child_bitfield_bit_size = 0;
70587058
child_bitfield_bit_offset = 0;
70597059

7060-
language_flags |= LanguageFlags::eIgnoreInstancePointerness;
70617060
return superclass_type;
70627061
}
70637062

lldb/source/Plugins/TypeSystem/Swift/TypeSystemSwift.h

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,7 @@ class TypeSystemSwift : public TypeSystem {
100100
class LanguageFlags {
101101
public:
102102
enum : uint64_t {
103-
eIsIndirectEnumCase = 0x1ULL,
104-
// FIXME: This appears to be unused.
105-
eIgnoreInstancePointerness = 0x2ULL
103+
eIsIndirectEnumCase = 0x1ULL
106104
};
107105

108106
private:

0 commit comments

Comments
 (0)