diff options
| author | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-05-05 11:36:27 +0000 |
|---|---|---|
| committer | paolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4> | 2013-05-05 11:36:27 +0000 |
| commit | 7146eedf3d00f55721320a27ce99d3def1f78fac (patch) | |
| tree | 7eb89ab24a055dd562005bf44184860b5a631c26 | |
| parent | 7b16dd2f62b9144945269e67f5be26f9270cae78 (diff) | |
| download | ppe42-gcc-7146eedf3d00f55721320a27ce99d3def1f78fac.tar.gz ppe42-gcc-7146eedf3d00f55721320a27ce99d3def1f78fac.zip | |
2013-05-05 Paolo Carlini <paolo.carlini@oracle.com>
* pt.c (convert_nontype_argument): Add missing whitespace in
error message.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@198608 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/cp/ChangeLog | 5 | ||||
| -rw-r--r-- | gcc/cp/pt.c | 2 |
2 files changed, 6 insertions, 1 deletions
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 <paolo.carlini@oracle.com> + + * pt.c (convert_nontype_argument): Add missing whitespace in + error message. + 2013-05-04 Paolo Carlini <paolo.carlini@oracle.com> 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; |

