Commit d29ab376 by Mark Mitchell Committed by Jason Merrill

* decl2.c (grok_x_components): Always call grok_enum_decls.

From-SVN: r17448
parent e1402e7d
Thu Jan 22 21:30:42 1998 Mark Mitchell <mmitchell@usa.net>
* decl2.c (grok_x_components): Always call grok_enum_decls.
Wed Jan 21 10:29:57 1998 Kriang Lerdsuwanakij <lerdsuwa@scf.usc.edu>
* pt.c (coerce_template_parms): Don't access elements of ARGLIST
......
......@@ -931,10 +931,7 @@ grok_x_components (specs, components)
else
{
t = TREE_TYPE (components);
if (TREE_CODE (t) == ENUMERAL_TYPE && TREE_NONLOCAL_FLAG (t))
return grok_enum_decls (t, components);
else
return components;
return grok_enum_decls (t, components);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment