(svn r8479) -Fix (r8459): Silenced VC warning C4099: 'Packet' : type name first seen using 'class' now seen using 'struct'

-Codechange: 'typedef struct Packet' changed to 'struct Packet'
This commit is contained in:
KUDr
2007-01-31 09:51:22 +00:00
parent d1b861a3dc
commit f9462a50e9
2 changed files with 4 additions and 4 deletions

View File

@@ -30,7 +30,7 @@ typedef enum {
} NetworkRecvStatus;
/** Forward declaration due to circular dependencies */
class Packet;
struct Packet;
/**
* SocketHandler for all network sockets in OpenTTD.