mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-03 14:31:10 +00:00
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:
parent
cb16c65426
commit
ccec07a040
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user