On 10/31/2011 08:37 PM, Jason Merrill wrote:
I have on occasion been confused by <initializer_list> silently becoming empty in C++98 mode. OK for trunk?
For c++98, I think we should use the usual:
#ifndef __GXX_EXPERIMENTAL_CXX0X__ # include <bits/c++0x_warning.h> #elsewhich we have in place elsewhere. Or we have special reasons for not doing that?
Paolo.