| 35 | |
| 36 | template <class TCharType, class TCharTraits, class TAllocator> |
| 37 | void ResizeUninitialized(std::basic_string<TCharType, TCharTraits, TAllocator>& s, size_t len) { |
| 38 | #if defined(_YNDX_LIBCXX_ENABLE_STRING_RESIZE_UNINITIALIZED) |
| 39 | s.resize_uninitialized(len); |
| 40 | #else |
| 41 | s.resize(len); |
| 42 | #endif |
| 43 | } |
| 44 | |
| 45 | #define Y_NOEXCEPT |
| 46 |
no test coverage detected