| 270 | //////////////////////////////////////////////////////////////////////////////// |
| 271 | |
| 272 | TSharedRef TSharedRef::FromString(TString str, TRefCountedTypeCookie tagCookie) |
| 273 | { |
| 274 | return FromStringImpl(std::move(str), tagCookie); |
| 275 | } |
| 276 | |
| 277 | TSharedRef TSharedRef::FromString(std::string str, TRefCountedTypeCookie tagCookie) |
| 278 | { |
nothing calls this directly
no test coverage detected