Do not use constants from stdint.h that we cannot portably provide on all platforms.

llvm-svn: 125695
This commit is contained in:
Stephen Wilson 2011-02-17 00:01:47 +00:00
parent 8d2226208d
commit bc15eb1736
1 changed files with 2 additions and 4 deletions

View File

@ -12,8 +12,6 @@
#if defined(__cplusplus) #if defined(__cplusplus)
#include <stdint.h>
#include "lldb/lldb-private.h" #include "lldb/lldb-private.h"
#include "llvm/ADT/Triple.h" #include "llvm/ADT/Triple.h"
@ -350,10 +348,10 @@ protected:
private: private:
void void
MachOArchUpdated (size_t macho_idx = SIZE_MAX); MachOArchUpdated (size_t macho_idx = ~(size_t)0);
void void
ELFArchUpdated (size_t idx = SIZE_MAX); ELFArchUpdated (size_t idx = ~(size_t)0);
}; };