X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=include%2Fllvm%2FADT%2Filist_node.h;h=f0080035cb885157e0a80b9e0300227e21ad3300;hb=c312f098999d4640cf91934632ccecfc9ef30b85;hp=3de4f156d20e60629457aee7929152522fdfef6e;hpb=aa81380353a27d9d216cafdd88df08a5eef43b74;p=oota-llvm.git diff --git a/include/llvm/ADT/ilist_node.h b/include/llvm/ADT/ilist_node.h index 3de4f156d20..f0080035cb8 100644 --- a/include/llvm/ADT/ilist_node.h +++ b/include/llvm/ADT/ilist_node.h @@ -67,7 +67,7 @@ public: /// \brief Get the previous node, or 0 for the list head. const NodeTy *getPrevNode() const { - NodeTy *Prev = this->getPrev(); + const NodeTy *Prev = this->getPrev(); // Check for sentinel. if (!Prev->getNext()) @@ -89,7 +89,7 @@ public: /// \brief Get the next node, or 0 for the list tail. const NodeTy *getNextNode() const { - NodeTy *Next = getNext(); + const NodeTy *Next = getNext(); // Check for sentinel. if (!Next->getNext())