From: Paolo Carlini Date: Sun, 5 May 2013 11:36:27 +0000 (+0000) Subject: pt.c (convert_nontype_argument): Add missing whitespace in error message. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3a1ee99e1af05d2d86e5119de025c6d8e25a40ff;p=gcc.git pt.c (convert_nontype_argument): Add missing whitespace in error message. 2013-05-05 Paolo Carlini * pt.c (convert_nontype_argument): Add missing whitespace in error message. From-SVN: r198608 --- diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 9d3e6521d65..e71b4f20253 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,8 @@ +2013-05-05 Paolo Carlini + + * pt.c (convert_nontype_argument): Add missing whitespace in + error message. + 2013-05-04 Paolo Carlini PR c++/53745 diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c index 33ab292b9b5..dca34073d3e 100644 --- a/gcc/cp/pt.c +++ b/gcc/cp/pt.c @@ -5651,7 +5651,7 @@ convert_nontype_argument (tree type, tree expr, tsubst_flags_t complain) } if (POINTER_TYPE_P (expr_type)) { - error ("%qE is not a valid template argument for %qT" + error ("%qE is not a valid template argument for %qT " "because it is not the address of a variable", expr, type); return NULL_TREE;