* pt.c (check_explicit_instantiation_namespace): Fix typo.
authorMark Mitchell <mark@codesourcery.com>
Thu, 15 Sep 2005 16:51:37 +0000 (16:51 +0000)
committerMark Mitchell <mmitchel@gcc.gnu.org>
Thu, 15 Sep 2005 16:51:37 +0000 (16:51 +0000)
From-SVN: r104311

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

index 37588de45c859c867b864977ee9304d73901496c..868ef3a4f663787cf8e8b450a4a806bdf5b46e69 100644 (file)
@@ -1,5 +1,7 @@
 2005-09-15  Mark Mitchell  <mark@codesourcery.com>
 
+       * pt.c (check_explicit_instantiation_namespace): Fix typo.
+
        PR c++/13140
        * decl.c (check_class_member_definition_namespace): New function.
        (grokfndecl): Use it.
index 3fe3152dcbda6800d4b5843f0205f4af23d2f1d4..8840d27f24b858979311d8ab7ae0ea6399a9739b 100644 (file)
@@ -685,7 +685,7 @@ check_explicit_instantiation_namespace (tree spec)
   ns = decl_namespace_context (spec);
   if (!is_ancestor (current_namespace, ns))
     pedwarn ("explicit instantiation of %qD in namespace %qD "
-            "(which does not enclose namespace %qD)"
+            "(which does not enclose namespace %qD)",
             spec, current_namespace, ns);
 }