From-SVN: r19969
This commit is contained in:
Jason Merrill 1998-05-22 22:20:21 -04:00
parent cf22ce453e
commit e125ac2661

View File

@ -439,7 +439,7 @@ Graph<T>::lookup_new(const T& from)
{
vertex<T> *v = lookup(from);
if (0 == v) {
vertices.append(from); // gets bogus error
vertices.append(from);
return &vertices(vertices.last());
}
return v;