* pt.c (dependent_template_p): Fix typo in commment.
authorMark Mitchell <mark@codesourcery.com>
Thu, 19 Aug 2004 05:08:09 +0000 (05:08 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Thu, 19 Aug 2004 05:08:09 +0000 (05:08 +0000)
From-SVN: r86233

gcc/cp/ChangeLog
gcc/cp/pt.c

index 0ba2415b4a45925f832e6f9187e1278af2ac8ef9..eb271e5b2b6a2f4e1797487464393ffd2740542a 100644 (file)
@@ -1,5 +1,7 @@
 2004-08-18  Mark Mitchell  <mark@codesourcery.com>
 
+       * pt.c (dependent_template_p): Fix typo in commment.
+
        PR c++/17068
        * pt.c (dependent_template_p): Treat IDENTIFIER_NODEs as
        dependent.
index 5175eb1e7056ae86cd2daef2fed3cec52290d0a9..4107d1ca1c6d43ca0546b4ea8e8301a329761abf 100644 (file)
@@ -12033,7 +12033,7 @@ dependent_template_p (tree tmpl)
   if (DECL_TEMPLATE_TEMPLATE_PARM_P (tmpl)
       || TREE_CODE (tmpl) == TEMPLATE_TEMPLATE_PARM)
     return true;
-  /* So arenames that have not been looked up.  */
+  /* So are names that have not been looked up.  */
   if (TREE_CODE (tmpl) == SCOPE_REF
       || TREE_CODE (tmpl) == IDENTIFIER_NODE)
     return true;