diff options
| author | Ted Kremenek <kremenek@apple.com> | 2008-01-19 17:21:43 +0000 |
|---|---|---|
| committer | Ted Kremenek <kremenek@apple.com> | 2008-01-19 17:21:43 +0000 |
| commit | 7d2b746f08b28a3830a99a39869511109d017463 (patch) | |
| tree | c4d2d3f3a8b96c45088c498f22d66da2b810a73b | |
| parent | 3e95d963e951407f78c18a8473bf237458e99c63 (diff) | |
| download | bcm5719-llvm-7d2b746f08b28a3830a99a39869511109d017463.tar.gz bcm5719-llvm-7d2b746f08b28a3830a99a39869511109d017463.zip | |
Changed argument name for 'Profile' method to potentially fix a name conflict
reported in pr1929 (http://llvm.org/PR1929).
llvm-svn: 46193
| -rw-r--r-- | llvm/include/llvm/ADT/APInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/ADT/APInt.h b/llvm/include/llvm/ADT/APInt.h index e97d5e75a86..a6ec167da35 100644 --- a/llvm/include/llvm/ADT/APInt.h +++ b/llvm/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; |

