From 2b5326e7240ac524812016bc3700e12045bf0eb1 Mon Sep 17 00:00:00 2001 From: Steve Naroff Date: Wed, 21 Jan 2009 23:49:23 +0000 Subject: [PATCH] Add explicit this-> (to make the VS compiler happy). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62731 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/ADT/ilist.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/ADT/ilist.h b/include/llvm/ADT/ilist.h index f87eeaf2b5d..cf9c9c7464d 100644 --- a/include/llvm/ADT/ilist.h +++ b/include/llvm/ADT/ilist.h @@ -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 -- 2.34.1