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
@@ -274,14 +274,14 @@ namespace pvAccess {
internalPostClose(force);
}
void BlockingTCPTransport::internalClose(bool force) {
void BlockingTCPTransport::internalClose(bool /*force*/) {
// close the socket
if(_channel!=INVALID_SOCKET) {
epicsSocketDestroy(_channel);
}
}
void BlockingTCPTransport::internalPostClose(bool force) {
void BlockingTCPTransport::internalPostClose(bool /*force*/) {
}
size_t BlockingTCPTransport::getSocketReceiveBufferSize() const {