Commit
041de3d73aa changed the output format of all error messages when
GDB couldn't determine a compatible overload for a given function, but
it was only supposed to change if the failure happened due to incomplete
types. This commit removes the stray . that was added
{
std::string hint = incomplete_type_hint (args);
if (method == METHOD)
- error (_("Cannot resolve method %s%s%s to any overloaded instance.%s"),
+ error (_("Cannot resolve method %s%s%s to any overloaded instance%s"),
obj_type_name,
(obj_type_name && *obj_type_name) ? "::" : "",
name, hint.c_str ());
else
- error (_("Cannot resolve function %s to any overloaded instance.%s"),
+ error (_("Cannot resolve function %s to any overloaded instance%s"),
func_name, hint.c_str ());
}
else if (match_quality == NON_STANDARD)