On 07/24/2012 10:23 AM, Paolo Carlini wrote:
while looking into the re-opened c++/51213 (doesn't seem trivial: details soon, I hope) I noticed things which look like old pastos: in convert_template_argument and tsubst we are computing complain & tf_error for the - tsubst_flags_t, not bool - fourth argument of make_typename_type. That doesn't make much sense to me and the below, as-is, passes testing.
The point of this use of (complain & tf_error) is to mask out flags we don't want and leave only tf_error. It may or may not be needed, but it's not a pasto.
Jason