| 25 | uint64_t Capacity{ 7 }; |
| 26 | |
| 27 | inline wchar_t const * GetPtr() const |
| 28 | { |
| 29 | if (Size > 7) { |
| 30 | return BufPtr; |
| 31 | } else { |
| 32 | return Buf; |
| 33 | } |
| 34 | } |
| 35 | }; |
| 36 | #pragma pack(pop) |
| 37 |
nothing calls this directly
no outgoing calls
no test coverage detected