[llvm-commits] [llvm] r62731 - /llvm/trunk/include/llvm/ADT/ilist.h
Steve Naroff
snaroff at apple.com
Wed Jan 21 15:49:23 PST 2009
Author: snaroff
Date: Wed Jan 21 17:49:23 2009
New Revision: 62731
URL: http://llvm.org/viewvc/llvm-project?rev=62731&view=rev
Log:
Add explicit this-> (to make the VS compiler happy).
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=62731&r1=62730&r2=62731&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ADT/ilist.h (original)
+++ llvm/trunk/include/llvm/ADT/ilist.h Wed Jan 21 17:49:23 2009
@@ -403,7 +403,7 @@
Head = NextNode;
this->setPrev(NextNode, PrevNode);
IT = NextNode;
- removeNodeFromList(Node); // Notify traits that we removed a node...
+ this->removeNodeFromList(Node); // Notify traits that we removed a node...
// Set the next/prev pointers of the current node to null. This isn't
// strictly required, but this catches errors where a node is removed from
More information about the llvm-commits
mailing list