[llvm-commits] [llvm] r62724 - /llvm/trunk/include/llvm/ADT/ilist.h
Douglas Gregor
dgregor at apple.com
Wed Jan 21 14:38:44 PST 2009
Author: dgregor
Date: Wed Jan 21 16:38:44 2009
New Revision: 62724
URL: http://llvm.org/viewvc/llvm-project?rev=62724&view=rev
Log:
Fix ilist two-phase name 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=62724&r1=62723&r2=62724&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ADT/ilist.h (original)
+++ llvm/trunk/include/llvm/ADT/ilist.h Wed Jan 21 16:38:44 2009
@@ -422,7 +422,7 @@
// erase - remove a node from the controlled sequence... and delete it.
iterator erase(iterator where) {
- deleteNode(remove(where));
+ this->deleteNode(remove(where));
return where;
}
More information about the llvm-commits
mailing list