Names from dependent base classes are not found by unqualified lookup.
authorJohn McCall <rjmccall@apple.com>
Tue, 15 Dec 2009 03:10:26 +0000 (03:10 +0000)
committerJohn McCall <rjmccall@apple.com>
Tue, 15 Dec 2009 03:10:26 +0000 (03:10 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91407 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ADT/ilist.h

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