[llvm-commits] [llvm] r91407 - /llvm/trunk/include/llvm/ADT/ilist.h
John McCall
rjmccall at apple.com
Mon Dec 14 19:10:26 PST 2009
Author: rjmccall
Date: Mon Dec 14 21:10:26 2009
New Revision: 91407
URL: http://llvm.org/viewvc/llvm-project?rev=91407&view=rev
Log:
Names from dependent base classes are not found by unqualified lookup.
Modified:
llvm/trunk/include/llvm/ADT/ilist.h
Modified: llvm/trunk/include/llvm/ADT/ilist.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/ilist.h?rev=91407&r1=91406&r2=91407&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ADT/ilist.h (original)
+++ llvm/trunk/include/llvm/ADT/ilist.h Mon Dec 14 21:10:26 2009
@@ -643,7 +643,7 @@
// 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));
}
More information about the llvm-commits
mailing list