Skip to content

Commit 57f8398

Browse files
authored
Add C type equivalents for Builtin.Int1 and Builtin.Int63
1 parent 4c47906 commit 57f8398

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

stdlib/public/runtime/KnownMetadata.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,11 @@ namespace ctypes {
5454
namespace {
5555
// Type definitions that map each names Swift builtin type to their
5656
// C counterparts.
57+
using Bi1_ = uint8_t;
5758
using Bi8_ = uint8_t;
5859
using Bi16_ = uint16_t;
5960
using Bi32_ = uint32_t;
61+
using Bi63_ = uint64_t;
6062
using Bi64_ = uint64_t;
6163
using Bi128_ = int128_like;
6264
using Bi256_ = int256_like;

0 commit comments

Comments
 (0)