diff options
author | Steve Naroff <snaroff@apple.com> | 2009-01-21 23:49:23 +0000 |
---|---|---|
committer | Steve Naroff <snaroff@apple.com> | 2009-01-21 23:49:23 +0000 |
commit | 2b5326e7240ac524812016bc3700e12045bf0eb1 (patch) | |
tree | 764307ba29268f3cf8f784c4a28197cf7b59c13f /include/llvm/ADT/ilist.h | |
parent | dbf5f2557e5daa89e51d59b0da3329b58c84e4cc (diff) | |
download | external_llvm-2b5326e7240ac524812016bc3700e12045bf0eb1.zip external_llvm-2b5326e7240ac524812016bc3700e12045bf0eb1.tar.gz external_llvm-2b5326e7240ac524812016bc3700e12045bf0eb1.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.h | 2 |
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 |