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

View File

@@ -55,14 +55,14 @@ public:
class DummyResponseHandler : public ResponseHandler {
public:
DummyResponseHandler(Context* ctx)
DummyResponseHandler(Context* /*ctx*/)
{ }
virtual ~DummyResponseHandler() {}
virtual void handleResponse(osiSockAddr* responseFrom,
Transport::shared_pointer const &, int8 version, int8 command, std::size_t payloadSize,
ByteBuffer* payloadBuffer) {
virtual void handleResponse(osiSockAddr* /*responseFrom*/,
Transport::shared_pointer const & /*transport*/, int8 /*version*/, int8 /*command*/, std::size_t /*payloadSize*/,
ByteBuffer* /*payloadBuffer*/) {
}
};
@@ -133,7 +133,7 @@ void testBlockingUDPSender() {
}
}
int main(int argc, char *argv[]) {
int main() {
// createFileLogger("testBlockingUDPClnt.log");
testBlockingUDPSender();