fixes to get it compiling on .NET.
This commit is contained in:
parent
7c391a0f35
commit
22ba640940
|
@ -6,8 +6,8 @@
|
|||
#endif
|
||||
#include "stdpost.h"
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
// istream has no overloads for __int* types
|
||||
#if defined(_MSC_VER) && _MSC_VER <= 1200
|
||||
// VC++6 istream has no overloads for __int* types, .NET does
|
||||
inline
|
||||
std::istream& operator>>(std::istream& s, SInt8& i)
|
||||
{ return s >> (signed char&)i; }
|
||||
|
|
|
@ -35,7 +35,7 @@ CStreamBuffer::peek(UInt32 n)
|
|||
scan = m_chunks.erase(scan);
|
||||
}
|
||||
|
||||
return reinterpret_cast<const void*>(head->begin() + m_headUsed);
|
||||
return reinterpret_cast<const void*>(&(head->begin()[m_headUsed]));
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in New Issue