aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ADT/ilist.h
diff options
context:
space:
mode:
authorSteve Naroff <snaroff@apple.com>2009-01-21 23:49:23 +0000
committerSteve Naroff <snaroff@apple.com>2009-01-21 23:49:23 +0000
commit248ac574aa92784be6422036d4a03d8a57040ef1 (patch)
tree764307ba29268f3cf8f784c4a28197cf7b59c13f /include/llvm/ADT/ilist.h
parentd210f0d05d75e58380ddf8393dfd8c0d1257e2db (diff)
downloadexternal_llvm-248ac574aa92784be6422036d4a03d8a57040ef1.zip
external_llvm-248ac574aa92784be6422036d4a03d8a57040ef1.tar.gz
external_llvm-248ac574aa92784be6422036d4a03d8a57040ef1.tar.bz2
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
Diffstat (limited to 'include/llvm/ADT/ilist.h')
-rw-r--r--include/llvm/ADT/ilist.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/ADT/ilist.h b/include/llvm/ADT/ilist.h
index f87eeaf..cf9c9c7 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