From 187b41ac8ad708dd3e7cb12b966e33b3e94f21a2 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Sun, 5 Aug 2007 19:36:39 +0000 Subject: [PATCH] Document a missing parameter. llvm-svn: 40852 --- llvm/include/llvm/ADT/APInt.h | 1 + 1 file changed, 1 insertion(+) diff --git a/llvm/include/llvm/ADT/APInt.h b/llvm/include/llvm/ADT/APInt.h index 535e5db94184..7e7c67bcaf69 100644 --- a/llvm/include/llvm/ADT/APInt.h +++ b/llvm/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);