unused params warnings removed

This commit is contained in:
Matej Sekoranja
2012-10-10 12:02:12 +02:00
parent 6f653cc3af
commit e11cca0fdb
33 changed files with 190 additions and 160 deletions
+2 -2
View File
@@ -38,7 +38,7 @@ inline int sendto(int s, const char *buf, size_t len, int flags, const struct so
BlockingUDPTransport::BlockingUDPTransport(
auto_ptr<ResponseHandler>& responseHandler, SOCKET channel,
osiSockAddr& bindAddress,
short remoteTransportRevision) :
short /*remoteTransportRevision*/) :
_closed(),
_responseHandler(responseHandler),
_channel(channel),
@@ -144,7 +144,7 @@ inline int sendto(int s, const char *buf, size_t len, int flags, const struct so
}
}
void BlockingUDPTransport::startMessage(int8 command, size_t ensureCapacity) {
void BlockingUDPTransport::startMessage(int8 command, size_t /*ensureCapacity*/) {
_lastMessageStartPosition = _sendBuffer->getPosition();
_sendBuffer->putByte(CA_MAGIC);
_sendBuffer->putByte(CA_VERSION);