summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-08-05 19:36:39 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-08-05 19:36:39 +0000
commitf094f81d36f0941f0e8ed9e4086b21db93186ff4 (patch)
tree146a0ec3e594fd7c19b86e6f040d0ddb5202da36
parent81a7572f1a6d3ecd3ca2af1613b8e2010c465713 (diff)
downloadllvm-f094f81d36f0941f0e8ed9e4086b21db93186ff4.tar.gz
llvm-f094f81d36f0941f0e8ed9e4086b21db93186ff4.tar.bz2
llvm-f094f81d36f0941f0e8ed9e4086b21db93186ff4.tar.xz
Document a missing parameter.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@40852 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/llvm/ADT/APInt.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/ADT/APInt.h b/include/llvm/ADT/APInt.h
index 535e5db941..7e7c67bcaf 100644
--- a/include/llvm/ADT/APInt.h
+++ b/include/llvm/ADT/APInt.h
@@ -189,6 +189,7 @@ public:
/// @param numBits the bit width of the constructed APInt
/// @param strStart the start of the string to be interpreted
/// @param slen the maximum number of characters to interpret
+ /// @param radix the radix to use for the conversion
/// @brief Construct an APInt from a string representation.
APInt(uint32_t numBits, const char strStart[], uint32_t slen, uint8_t radix);