summaryrefslogtreecommitdiff
path: root/src/network/core/core.h
diff options
context:
space:
mode:
authorKUDr <kudr@openttd.org>2007-01-31 09:51:22 +0000
committerKUDr <kudr@openttd.org>2007-01-31 09:51:22 +0000
commitf9462a50e97bb36c8500576c945888de5819df05 (patch)
tree7704e036050ae43b2448c6c4a44553261970adbf /src/network/core/core.h
parentd1b861a3dca1a9f5ce26a6caa3b016a6d3b80841 (diff)
downloadopenttd-f9462a50e97bb36c8500576c945888de5819df05.tar.xz
(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'
Diffstat (limited to 'src/network/core/core.h')
-rw-r--r--src/network/core/core.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/core/core.h b/src/network/core/core.h
index 729145e7f..29c595cd6 100644
--- a/src/network/core/core.h
+++ b/src/network/core/core.h
@@ -30,7 +30,7 @@ typedef enum {
} NetworkRecvStatus;
/** Forward declaration due to circular dependencies */
-class Packet;
+struct Packet;
/**
* SocketHandler for all network sockets in OpenTTD.