When attempting to convert a std::string
to an Aws::String
using the following code:
std::string s("Johnny is cool");
Aws::String aws_s(s);
And I get the following error:
error: no matching function for call to ‘std::__cxx11::basic_string<char, std::char_traits<char>, Aws::Allocator<char> >::basic_string(const string&)’