File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -154,7 +154,7 @@ public SwiftObjectHeader {
154154
155155 enum { numCustomBits = std::numeric_limits<CustomBitsType>::digits };
156156
157- constexpr static const size_t maxBitfieldID =
157+ constexpr static const uint64_t maxBitfieldID =
158158 std::numeric_limits<uint64_t >::max();
159159
160160 // / Gets the ID (= index in the function's block list) of the block.
Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ class alignas(8) SILNode :
128128
129129 enum { numCustomBits = 20 };
130130
131- constexpr static const size_t maxBitfieldID =
131+ constexpr static const uint64_t maxBitfieldID =
132132 std::numeric_limits<uint64_t >::max () >> numCustomBits;
133133
134134protected:
Original file line number Diff line number Diff line change @@ -1033,7 +1033,7 @@ class Operand {
10331033public:
10341034 enum { numCustomBits = 8 };
10351035
1036- constexpr static const size_t maxBitfieldID =
1036+ constexpr static const uint64_t maxBitfieldID =
10371037 std::numeric_limits<uint64_t >::max() >> numCustomBits;
10381038
10391039private:
You can’t perform that action at this time.
0 commit comments