Commit e125ac26 by Jason Merrill

tweak

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