Fix namespace correctness bug

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3798 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2002-09-17 23:48:02 +00:00
parent cb16c65426
commit ccec07a040

View File

@ -137,7 +137,7 @@ static inline bool input_data(const unsigned char *&Buf,
unsigned Amount = (unsigned char *)End - Start;
if (Buf+Amount > EndBuf) return true;
#ifdef LITTLE_ENDIAN
copy(Buf, Buf+Amount, Start);
std::copy(Buf, Buf+Amount, Start);
Buf += Amount;
#else
unsigned char *E = (unsigned char *)End;