summaryrefslogtreecommitdiff
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
commit2b5326e7240ac524812016bc3700e12045bf0eb1 (patch)
tree764307ba29268f3cf8f784c4a28197cf7b59c13f /include/llvm/ADT/ilist.h
parentdbf5f2557e5daa89e51d59b0da3329b58c84e4cc (diff)
downloadllvm-2b5326e7240ac524812016bc3700e12045bf0eb1.tar.gz
llvm-2b5326e7240ac524812016bc3700e12045bf0eb1.tar.bz2
llvm-2b5326e7240ac524812016bc3700e12045bf0eb1.tar.xz
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 f87eeaf2b5..cf9c9c7464 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