From: John McCall Date: Tue, 15 Dec 2009 03:10:26 +0000 (+0000) Subject: Names from dependent base classes are not found by unqualified lookup. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=eb751d8c2da1a9b0d84139e19e20288d9b978451;p=oota-llvm.git Names from dependent base classes are not found by unqualified lookup. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91407 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ADT/ilist.h b/include/llvm/ADT/ilist.h index b3824a217c7..e4d26ddfa50 100644 --- a/include/llvm/ADT/ilist.h +++ b/include/llvm/ADT/ilist.h @@ -643,7 +643,7 @@ struct ilist : public iplist { // 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)); }