Re: [C++ Patch] PR 58207

2014-04-04 Thread Jason Merrill
OK. Jason

[C++ Patch] PR 58207

2014-04-04 Thread Paolo Carlini
Hi, this regression is an ICE happening during error recovery: the loop in sort_constexpr_mem_initializers tries to access the vector beyond its end. Robustifying the whole thing, using in particular a standard pattern using vec_safe_iterate to go through the vector, works. In case, I'm not s