8 Apr
2016
8 Apr
'16
12:48 p.m.
Since this is a 1-minute fix, I won't open any tickets: template<int N> basic_array_source(char_type (&)[N]); -> template<int N> basic_array_source(const char_type (&)[N]); Since iostream sources are read-only, this should be const.