| 252 | uint64_t Capacity{ 7 }; |
| 253 | |
| 254 | inline wchar_t const * GetPtr() const |
| 255 | { |
| 256 | if (Size > 7) { |
| 257 | return BufPtr; |
| 258 | } else { |
| 259 | return Buf; |
| 260 | } |
| 261 | } |
| 262 | |
| 263 | void Set(std::wstring const & s); |
| 264 | }; |
no outgoing calls
no test coverage detected