From: Ted Kremenek Date: Sat, 19 Jan 2008 17:21:43 +0000 (+0000) Subject: Changed argument name for 'Profile' method to potentially fix a name conflict X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=187784996c1bdf8aafb5f8719bcbde9260465865;p=oota-llvm.git Changed argument name for 'Profile' method to potentially fix a name conflict reported in pr1929 (http://llvm.org/PR1929). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46193 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ADT/APInt.h b/include/llvm/ADT/APInt.h index e97d5e75a86..a6ec167da35 100644 --- a/include/llvm/ADT/APInt.h +++ b/include/llvm/ADT/APInt.h @@ -213,7 +213,7 @@ public: /// Profile - Used to insert APInt objects, or objects that contain APInt /// objects, into FoldingSets. - void Profile(FoldingSetNodeID& ID) const; + void Profile(FoldingSetNodeID& id) const; /// @brief Used by the Bitcode serializer to emit APInts to Bitcode. void Emit(Serializer& S) const;