Commit 492ff760 by Graham Stott Committed by Kriang Lerdsuwanakij

* pt.c (instantiate_class_template): Fix typo.

From-SVN: r55210
parent 34a80643
2002-07-03 Graham Stott <graham.stott@btinternet.com>
* pt.c (instantiate_class_template): Fix typo.
2002-07-02 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net> 2002-07-02 Kriang Lerdsuwanakij <lerdsuwa@users.sourceforge.net>
* typeck2.c (cxx_incomplete_type_diagnostic): Fix typo caused * typeck2.c (cxx_incomplete_type_diagnostic): Fix typo caused
......
...@@ -5251,7 +5251,7 @@ instantiate_class_template (type) ...@@ -5251,7 +5251,7 @@ instantiate_class_template (type)
tree rtype = TREE_TYPE (r); tree rtype = TREE_TYPE (r);
if (!can_complete_type_without_circularity (rtype)) if (!can_complete_type_without_circularity (rtype))
{ {
incomplete_type_error (r, rtype); cxx_incomplete_type_error (r, rtype);
r = error_mark_node; r = error_mark_node;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment