mirror of git://gcc.gnu.org/git/gcc.git
re PR c++/51416 ([c++0x] [4.6/4.7 Regression] ICE with invalid use of auto)
PR c++/51416 * init.c (build_value_init_noctor): Check for incomplete type. From-SVN: r182435
This commit is contained in:
parent
bc958632e5
commit
46a76d4b78
|
@ -377,6 +377,12 @@ build_value_init (tree type, tsubst_flags_t complain)
|
||||||
tree
|
tree
|
||||||
build_value_init_noctor (tree type, tsubst_flags_t complain)
|
build_value_init_noctor (tree type, tsubst_flags_t complain)
|
||||||
{
|
{
|
||||||
|
if (!COMPLETE_TYPE_P (type))
|
||||||
|
{
|
||||||
|
if (complain & tf_error)
|
||||||
|
error ("value-initialization of incomplete type %qT", type);
|
||||||
|
return error_mark_node;
|
||||||
|
}
|
||||||
/* FIXME the class and array cases should just use digest_init once it is
|
/* FIXME the class and array cases should just use digest_init once it is
|
||||||
SFINAE-enabled. */
|
SFINAE-enabled. */
|
||||||
if (CLASS_TYPE_P (type))
|
if (CLASS_TYPE_P (type))
|
||||||
|
|
Loading…
Reference in New Issue