summaryrefslogtreecommitdiff
path: root/src/net/messageout.h
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2013-01-09 13:23:43 +0100
committerThorbjørn Lindeijer <thorbjorn@lindeijer.nl>2013-01-09 13:23:43 +0100
commit16074a7c2c8197a061281a6880ddbc3967d8ea0c (patch)
treebd0cc650944aaeb38e87d43b94e43c1ab94bb2c7 /src/net/messageout.h
parent562b403a66a6a96d883620b27455564d50e3d49b (diff)
downloadmanaserv-16074a7c2c8197a061281a6880ddbc3967d8ea0c.tar.gz
manaserv-16074a7c2c8197a061281a6880ddbc3967d8ea0c.tar.bz2
manaserv-16074a7c2c8197a061281a6880ddbc3967d8ea0c.tar.xz
manaserv-16074a7c2c8197a061281a6880ddbc3967d8ea0c.zip
Replaced 'unsigned int' with 'unsigned'
Same thing, but shorter.
Diffstat (limited to 'src/net/messageout.h')
-rw-r--r--src/net/messageout.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/net/messageout.h b/src/net/messageout.h
index a39e306b..af5980f4 100644
--- a/src/net/messageout.h
+++ b/src/net/messageout.h
@@ -75,7 +75,7 @@ class MessageOut
/**
* Returns the length of the data.
*/
- unsigned int getLength() const { return mPos; }
+ unsigned getLength() const { return mPos; }
/**
* Sets whether the debug mode is enabled. In debug mode, the internal
@@ -96,8 +96,8 @@ class MessageOut
void writeValueType(ManaServ::ValueType type);
char *mData; /**< Data building up. */
- unsigned int mPos; /**< Position in the data. */
- unsigned int mDataSize; /**< Allocated datasize. */
+ unsigned mPos; /**< Position in the data. */
+ unsigned mDataSize; /**< Allocated datasize. */
bool mDebugMode; /**< Include debugging information. */
/**