From: Steve Naroff Date: Wed, 21 Jan 2009 23:49:23 +0000 (+0000) Subject: Add explicit this-> (to make the VS compiler happy). X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=2b5326e7240ac524812016bc3700e12045bf0eb1;p=oota-llvm.git 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 --- 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