| 210 | |
| 211 | template <typename... A> |
| 212 | static TStorage Construct(A&&... a) { |
| 213 | return {new TStdStr(std::forward<A>(a)...), typename TStorage::TNoIncrement()}; |
| 214 | } |
| 215 | |
| 216 | static TStorage Construct() noexcept { |
| 217 | return TStdStr::NullStr(); |
no test coverage detected