Add explicit this-> (to make the VS compiler happy).
authorSteve Naroff <snaroff@apple.com>
Wed, 21 Jan 2009 23:49:23 +0000 (23:49 +0000)
committerSteve Naroff <snaroff@apple.com>
Wed, 21 Jan 2009 23:49:23 +0000 (23:49 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62731 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/ADT/ilist.h

index f87eeaf2b5db1e3ea662492fabb709e483658aa3..cf9c9c7464d47f7126d42777312fd60f9149f0b4 100644 (file)
@@ -403,7 +403,7 @@ public:
       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