pt.c (tsubst): Fix typo in last commit.
authorPaolo Carlini <paolo@gcc.gnu.org>
Wed, 16 Oct 2013 11:56:01 +0000 (11:56 +0000)
committerPaolo Carlini <paolo@gcc.gnu.org>
Wed, 16 Oct 2013 11:56:01 +0000 (11:56 +0000)
2013-10-16  Paolo Carlini  <paolo.carlini@oracle.com>

* pt.c (tsubst): Fix typo in last commit.

From-SVN: r203700

gcc/cp/pt.c

index 95d901c73854527ee5588358db675c452ebdcc2f..eed648a377332a2cefecf61da50536c941d0cd3c 100644 (file)
@@ -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;
     }
 }