In some code int8_t[] type is used instead of char[].
int8_t title[256] = {'a', 'e', 'w', 's'};
std::string s(title); // compile error: no corresponding constructor
How to properly and safely create a std::string from it?
When I will do cout << s; I want that it print aews, as if char[] type was passed to the constructor.