diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-10-18 16:51:46 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-10-19 15:12:21 +0300 |
commit | 0956bdd8a29fdff9b7d0379325f12b7d8c650b41 (patch) | |
tree | 19188b351b47c8aafd7a166e1129e850881ef318 /src/net | |
parent | c2478b07d67b31b16b280d1681a0e39ae50ea77b (diff) | |
download | plus-0956bdd8a29fdff9b7d0379325f12b7d8c650b41.tar.gz plus-0956bdd8a29fdff9b7d0379325f12b7d8c650b41.tar.bz2 plus-0956bdd8a29fdff9b7d0379325f12b7d8c650b41.tar.xz plus-0956bdd8a29fdff9b7d0379325f12b7d8c650b41.zip |
fix const in declaration in messageout.
Diffstat (limited to 'src/net')
-rw-r--r-- | src/net/messageout.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/messageout.h b/src/net/messageout.h index 0fcd6ce15..75d7061b8 100644 --- a/src/net/messageout.h +++ b/src/net/messageout.h @@ -40,7 +40,7 @@ class MessageOut public: A_DELETE_COPY(MessageOut) - virtual void writeInt8(int8_t value); /**< Writes a byte. */ + virtual void writeInt8(const int8_t value); /**< Writes a byte. */ virtual void writeInt16(int16_t value) = 0; /**< Writes a short. */ |