File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -195,8 +195,8 @@ types where the metadata itself has unknown layout.)
195
195
global ::= protocol 'TL' // protocol requirements base descriptor
196
196
global ::= assoc-type-name 'Tl' // associated type descriptor
197
197
global ::= assoc-type-name 'TM' // default associated type witness accessor (HISTORICAL)
198
- global ::= type assoc-type-path protocol 'Tn' // associated conformance descriptor
199
- global ::= type assoc-type-path protocol 'TN' // default associated conformance witness accessor
198
+ global ::= type assoc-type-list protocol 'Tn' // associated conformance descriptor
199
+ global ::= type assoc-type-list protocol 'TN' // default associated conformance witness accessor
200
200
201
201
REABSTRACT-THUNK-TYPE ::= 'R' // reabstraction thunk helper function
202
202
REABSTRACT-THUNK-TYPE ::= 'r' // reabstraction thunk
Original file line number Diff line number Diff line change 33
33
#endif
34
34
35
35
BUILTIN_TYPE (Bi1_, " Builtin.Int1" )
36
+ BUILTIN_TYPE(Bi7_, " Builtin.Int7" )
36
37
BUILTIN_TYPE(Bi8_, " Builtin.Int8" )
37
38
BUILTIN_TYPE(Bi16_, " Builtin.Int16" )
38
39
BUILTIN_TYPE(Bi32_, " Builtin.Int32" )
Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ namespace ctypes {
57
57
// Type definitions that map each names Swift builtin type to their
58
58
// C counterparts.
59
59
using Bi1_ = uint8_t ;
60
+ using Bi7_ = uint8_t ;
60
61
using Bi8_ = uint8_t ;
61
62
using Bi16_ = uint16_t ;
62
63
using Bi32_ = uint32_t ;
You can’t perform that action at this time.
0 commit comments