This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: C++ translation improvement


Zack Weinberg <zack at codesourcery dot com> writes:

> Will apply if bootstrap finishes successfully.

Agh, silly error.  The version I've committed has an addition here:

> -  str = "candidates are:";
> -  for (; candidates; candidates = candidates->next)
> -    {
> -      print_z_candidate (str, candidates, error);
> -      str = "               "; 

+    if (!candidates)
+      return;

> +  str = _("candidates are:");
> +  print_z_candidate (str, candidates);

zw


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]