From Stephan Huber, fixed for Windows 64bit build

This commit is contained in:
Robert Osfield
2013-02-06 09:20:10 +00:00
parent 8ed0780967
commit 09f42e1411

View File

@@ -66,8 +66,8 @@ public:
class OutboundPacketStream{
public:
OutboundPacketStream( char *buffer, unsigned long capacity );
~OutboundPacketStream();
OutboundPacketStream( char *buffer, unsigned long capacity );
~OutboundPacketStream();
void Clear();
@@ -96,7 +96,7 @@ public:
OutboundPacketStream& operator<<( const InfinitumType& rhs );
OutboundPacketStream& operator<<( int32 rhs );
#ifndef __x86_64__
#if !(defined(__x86_64__) || defined(_M_X64))
OutboundPacketStream& operator<<( int rhs )
{ *this << (int32)rhs; return *this; }
#endif