| 1896 | }; |
| 1897 | |
| 1898 | struct String { |
| 1899 | SizeType length; |
| 1900 | SizeType hashcode; //!< reserved |
| 1901 | const Ch* str; |
| 1902 | }; // 12 bytes in 32-bit mode, 16 bytes in 64-bit mode |
| 1903 | |
| 1904 | // implementation detail: ShortString can represent zero-terminated strings up to MaxSize chars |
| 1905 | // (excluding the terminating zero) and store a value to determine the length of the contained |
no outgoing calls
no test coverage detected