From e2a009c710b96a3dcb81eba7ff574fd53f68fea5 Mon Sep 17 00:00:00 2001 From: Jason Merrill Date: Thu, 14 Apr 2011 11:00:15 -0400 Subject: re PR c++/48531 ([C++0x][SFINAE] Hard errors with arrays of unknown bound) PR c++/48531 * init.c (build_value_init_noctor): Check complain consistently. From-SVN: r172434 --- gcc/cp/init.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'gcc/cp/init.c') diff --git a/gcc/cp/init.c b/gcc/cp/init.c index 32afa03..fad7f0c 100644 --- a/gcc/cp/init.c +++ b/gcc/cp/init.c @@ -422,7 +422,9 @@ build_value_init_noctor (tree type, tsubst_flags_t complain) as we don't know the size of the array yet. */ if (max_index == error_mark_node) { - error ("cannot value-initialize array of unknown bound %qT", type); + if (complain & tf_error) + error ("cannot value-initialize array of unknown bound %qT", + type); return error_mark_node; } gcc_assert (TREE_CODE (max_index) == INTEGER_CST); -- cgit v1.1