| 166 | |
| 167 | template <class S> |
| 168 | AbstractString(const size_type limit, const S& v) |
| 169 | : max_length(static_cast<internal_size_type>(limit)) |
| 170 | { |
| 171 | FB_SIZE_T l = v.length(); |
| 172 | initialize(l); |
| 173 | memcpy(stringBuffer, v.c_str(), l); |
| 174 | } |
| 175 | |
| 176 | explicit AbstractString(const size_type limit) : |
| 177 | max_length(static_cast<internal_size_type>(limit)), |