| 171 | uint64_t length; |
| 172 | |
| 173 | FORCE_INLINE SmallString(const char *s) |
| 174 | { |
| 175 | length = strlen(s); |
| 176 | if (length < 128) strcpy(data, s); |
| 177 | } |
| 178 | }; |
| 179 | |
| 180 | template <unsigned Length> |
nothing calls this directly
no outgoing calls
no test coverage detected