From: Dan Gohman Date: Mon, 16 Aug 2010 15:03:24 +0000 (+0000) Subject: Constify FoldingSetNodeIDRef's Data. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=1878aba8e4753f82a8e7c7390e0adbeb0a393bb5;p=oota-llvm.git Constify FoldingSetNodeIDRef's Data. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@111128 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ADT/FoldingSet.h b/include/llvm/ADT/FoldingSet.h index 0a7401dad0d..432ff270280 100644 --- a/include/llvm/ADT/FoldingSet.h +++ b/include/llvm/ADT/FoldingSet.h @@ -217,13 +217,13 @@ template struct FoldingSetTrait { /// is often much larger than necessary, and the possibility of heap /// allocation means it requires a non-trivial destructor call. class FoldingSetNodeIDRef { - unsigned* Data; + const unsigned* Data; size_t Size; public: FoldingSetNodeIDRef() : Data(0), Size(0) {} - FoldingSetNodeIDRef(unsigned *D, size_t S) : Data(D), Size(S) {} + FoldingSetNodeIDRef(const unsigned *D, size_t S) : Data(D), Size(S) {} - unsigned *getData() const { return Data; } + const unsigned *getData() const { return Data; } size_t getSize() const { return Size; } };