On Mon, Jul 3, 2017 at 12:02 PM, Jakub Jelinek <ja...@redhat.com> wrote: > So like this?
Looks good, except... > case sc_auto: > - error_at (loc, "decomposition declaration cannot be declared " > + error_at (loc, "structured binding declaration cannot be " > "C++98 %<auto%>"); > break; > default: This case should just fall into the default gcc_unreachable, we aren't going to get C++98 auto in C++17 mode. Jason