[llvm-commits] [llvm] r46193 - /llvm/trunk/include/llvm/ADT/APInt.h
Ted Kremenek
kremenek at apple.com
Sat Jan 19 09:21:44 PST 2008
Author: kremenek
Date: Sat Jan 19 11:21:43 2008
New Revision: 46193
URL: http://llvm.org/viewvc/llvm-project?rev=46193&view=rev
Log:
Changed argument name for 'Profile' method to potentially fix a name conflict
reported in pr1929 (http://llvm.org/PR1929).
Modified:
llvm/trunk/include/llvm/ADT/APInt.h
Modified: llvm/trunk/include/llvm/ADT/APInt.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/ADT/APInt.h?rev=46193&r1=46192&r2=46193&view=diff
==============================================================================
--- llvm/trunk/include/llvm/ADT/APInt.h (original)
+++ llvm/trunk/include/llvm/ADT/APInt.h Sat Jan 19 11:21:43 2008
@@ -213,7 +213,7 @@
/// 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;
More information about the llvm-commits
mailing list