diff options
author | John McCall <rjmccall@apple.com> | 2009-12-15 03:10:26 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2009-12-15 03:10:26 +0000 |
commit | eb751d8c2da1a9b0d84139e19e20288d9b978451 (patch) | |
tree | 9c3f397b3d28d11fb0df7a2a512939300597814f | |
parent | d7760a490544b84127c7c9058238bfb684cf433b (diff) |
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
-rw-r--r-- | include/llvm/ADT/ilist.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ADT/ilist.h b/include/llvm/ADT/ilist.h index b3824a217c..e4d26ddfa5 100644 --- a/include/llvm/ADT/ilist.h +++ b/include/llvm/ADT/ilist.h @@ -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)); } |