File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -93,11 +93,11 @@ class SILParser;
93
93
// / In addition to the Swift type system, SIL adds "address" types that can
94
94
// / reference any Swift type (but cannot take the address of an address). *T
95
95
// / is the type of an address pointing at T.
96
- // /
97
96
class SILType {
98
97
public:
99
98
// / The unsigned is a SILValueCategory.
100
99
using ValueType = llvm::PointerIntPair<TypeBase *, 2 , unsigned >;
100
+
101
101
private:
102
102
ValueType value;
103
103
@@ -194,7 +194,6 @@ class SILType {
194
194
return removingMoveOnlyWrapper ().getRawASTType ();
195
195
}
196
196
197
- private:
198
197
// / Returns the canonical AST type references by this SIL type without looking
199
198
// / through move only. Should only be used by internal utilities of SILType.
200
199
CanType getRawASTType () const { return CanType (value.getPointer ()); }
You can’t perform that action at this time.
0 commit comments