Names from dependent base classes are not found by unqualified lookup.

llvm-svn: 91407
This commit is contained in:
John McCall 2009-12-15 03:10:26 +00:00
parent 4adb4acc7b
commit 9ebba8d98e

View File

@ -643,7 +643,7 @@ struct ilist : public iplist<NodeTy> {
// Main implementation here - Insert for a node passed by value... // Main implementation here - Insert for a node passed by value...
iterator insert(iterator where, const NodeTy &val) { iterator insert(iterator where, const NodeTy &val) {
return insert(where, createNode(val)); return insert(where, this->createNode(val));
} }