| 1954 | }; |
| 1955 | |
| 1956 | struct String { |
| 1957 | SizeType length; |
| 1958 | SizeType hashcode; //!< reserved |
| 1959 | const Ch* str; |
| 1960 | }; // 12 bytes in 32-bit mode, 16 bytes in 64-bit mode |
| 1961 | |
| 1962 | // implementation detail: ShortString can represent zero-terminated strings up to MaxSize chars |
| 1963 | // (excluding the terminating zero) and store a value to determine the length of the contained |
no outgoing calls
no test coverage detected