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
This commit is contained in:
Brian Gaeke 2003-10-30 15:03:49 +00:00
parent 14fffaf6c1
commit 0b64ca3cbd
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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;