I’m working with a plugin that isn’t compatible with Urho3D strings
so I have need to cast from std::string into String
so something like this should work:
std::string foo = “I"m a string”;
String bar = String(foo);
however during compilation I get this error:
‘ToString’: is not a member of 'std::basic_string<cahr_traits>,std::allocator>
the error throws against line 145 of str.h