diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2003-10-30 15:03:49 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2003-10-30 15:03:49 +0000 |
commit | 0b64ca3cbde361729f357dfc230a1d9dce1717dc (patch) | |
tree | 9a949af382e804c621111fffd18e5c28f6f14e28 /include/Support/StringExtras.h | |
parent | 14fffaf6c1c6e62897dd8cd0ec90ab196faec764 (diff) |
Apparently my Mac OS X fixes were not entirely compatible with SPARC...hmm.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9612 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/Support/StringExtras.h')
-rw-r--r-- | include/Support/StringExtras.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/Support/StringExtras.h b/include/Support/StringExtras.h index b0f5c51ed0..2c50c1cd5b 100644 --- a/include/Support/StringExtras.h +++ b/include/Support/StringExtras.h @@ -36,7 +36,7 @@ static inline std::string utohexstr(uint64_t X) { return std::string(BufPtr); } -static inline std::string utostr(uint64_t X, bool isNeg = false) { +static inline std::string utostr(unsigned long long X, bool isNeg = false) { char Buffer[40]; char *BufPtr = Buffer+39; |