| 91 | } |
| 92 | |
| 93 | static void WriteBigIntSlot(int64_t value, void* slot) { |
| 94 | *reinterpret_cast<int64_t*>(slot) = value; |
| 95 | } |
| 96 | |
| 97 | static void WriteIntSlot(int32_t value, void* slot) { |
| 98 | *reinterpret_cast<int32_t*>(slot) = value; |
no outgoing calls
no test coverage detected