typeck2.c (process_init_constructor): Don't strip cv-qualifiers when doing initializations.
* typeck2.c (process_init_constructor): Don't strip cv-qualifiers when doing initializations. From-SVN: r19255
This commit is contained in:
parent
0e05e8ea12
commit
2b6815eae2
@ -1,3 +1,8 @@
|
||||
Fri Apr 17 00:45:12 1998 Mark Mitchell <mmitchell@usa.net>
|
||||
|
||||
* typeck2.c (process_init_constructor): Don't strip cv-qualifiers
|
||||
when doing initializations.
|
||||
|
||||
Fri Apr 17 00:24:22 1998 Jason Merrill <jason@yorick.cygnus.com>
|
||||
|
||||
* decl.c (duplicate_decls): Fix check for when it's safe to free
|
||||
|
@ -967,7 +967,7 @@ process_init_constructor (type, init, elts)
|
||||
if (TREE_VALUE (tail) != 0)
|
||||
{
|
||||
tree tail1 = tail;
|
||||
next1 = digest_init (TYPE_MAIN_VARIANT (TREE_TYPE (type)),
|
||||
next1 = digest_init (TREE_TYPE (type),
|
||||
TREE_VALUE (tail), &tail1);
|
||||
if (TYPE_NEEDS_CONSTRUCTING (TREE_TYPE (type))
|
||||
&& TYPE_MAIN_VARIANT (TREE_TYPE (type)) != TYPE_MAIN_VARIANT (TREE_TYPE (next1)))
|
||||
|
Loading…
Reference in New Issue
Block a user