When GCC raises an error, it shows the method definition with details.
For example, instead of showing:
std::string
it shows:
std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> >
Is there any flag, tool, or solution that exists to make the GCC errors more simple? like showing std::string
instead of the basic signature.
Note, I'm looking for a solution for any kind of type and not specifically for string
.