diff options
author | Paolo Carlini <paolo@gcc.gnu.org> | 2013-10-16 11:56:01 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2013-10-16 11:56:01 +0000 |
commit | 71f42ec5574f16e6bec08f5ef6798455e2c2ac87 (patch) | |
tree | 7ce5fc30d47119656809754fb03f7a0ac7776e02 | |
parent | c281bf268eb88e26a4d1e7e55f012296c44c9fea (diff) | |
download | gcc-71f42ec5574f16e6bec08f5ef6798455e2c2ac87.zip gcc-71f42ec5574f16e6bec08f5ef6798455e2c2ac87.tar.gz gcc-71f42ec5574f16e6bec08f5ef6798455e2c2ac87.tar.bz2 |
pt.c (tsubst): Fix typo in last commit.
2013-10-16 Paolo Carlini <paolo.carlini@oracle.com>
* pt.c (tsubst): Fix typo in last commit.
From-SVN: r203700
-rw-r--r-- | gcc/cp/pt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/cp/pt.c b/gcc/cp/pt.c index 95d901c..eed648a 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; } } |