Add prototypes for CheckMagic, IsArchive, and IsBytecode.
[oota-llvm.git] / include / Support / StringExtras.h
index b0f5c51ed0b2a868c38b0ae06d713c7fe151c537..2c50c1cd5be39b821e816d608210f298c8fcef89 100644 (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;