From: Paolo Carlini Date: Wed, 16 Oct 2013 11:56:01 +0000 (+0000) Subject: pt.c (tsubst): Fix typo in last commit. X-Git-Tag: releases/gcc-4.9.0~3433 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=71f42ec5574f16e6bec08f5ef6798455e2c2ac87;p=thirdparty%2Fgcc.git pt.c (tsubst): Fix typo in last commit. 2013-10-16 Paolo Carlini * pt.c (tsubst): Fix typo in last commit. From-SVN: r203700 --- diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c index 95d901c73854..eed648a37733 100644 --- a/gcc/cp/pt.c +++ b/gcc/cp/pt.c @@ -12102,7 +12102,7 @@ tsubst (tree t, tree args, tsubst_flags_t complain, tree in_decl) gcc_unreachable (); default: - sorry ("use of %qs in template", get_tree_code_name ((int) code)); + sorry ("use of %qs in template", get_tree_code_name (code)); return error_mark_node; } }