diff options
author | Jose <jose@zeroc.com> | 2019-01-11 18:09:22 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2019-01-11 18:10:30 +0100 |
commit | 6fe6fb0f50e7e1cf64d64c2c8d8d03122fed2eb9 (patch) | |
tree | 21ae24549d02f8fd98d8211949dfdd4ab588d114 /python/modules/IcePy/BatchRequestInterceptor.cpp | |
parent | Fix whitespace (diff) | |
download | ice-6fe6fb0f50e7e1cf64d64c2c8d8d03122fed2eb9.tar.bz2 ice-6fe6fb0f50e7e1cf64d64c2c8d8d03122fed2eb9.tar.xz ice-6fe6fb0f50e7e1cf64d64c2c8d8d03122fed2eb9.zip |
GCC 8 Build fixes for Python, PHP and Ruby
Diffstat (limited to 'python/modules/IcePy/BatchRequestInterceptor.cpp')
-rw-r--r-- | python/modules/IcePy/BatchRequestInterceptor.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/python/modules/IcePy/BatchRequestInterceptor.cpp b/python/modules/IcePy/BatchRequestInterceptor.cpp index 81e24d067d4..fab43435a7b 100644 --- a/python/modules/IcePy/BatchRequestInterceptor.cpp +++ b/python/modules/IcePy/BatchRequestInterceptor.cpp @@ -52,7 +52,7 @@ batchRequestDealloc(BatchRequestObject* self) extern "C" #endif static PyObject* -batchRequestGetSize(BatchRequestObject* self) +batchRequestGetSize(BatchRequestObject* self, PyObject* /*args*/) { assert(self->request); if(!self->size) @@ -78,7 +78,7 @@ batchRequestGetSize(BatchRequestObject* self) extern "C" #endif static PyObject* -batchRequestGetOperation(BatchRequestObject* self) +batchRequestGetOperation(BatchRequestObject* self, PyObject* /*args*/) { assert(self->request); if(!self->operation) @@ -104,7 +104,7 @@ batchRequestGetOperation(BatchRequestObject* self) extern "C" #endif static PyObject* -batchRequestGetProxy(BatchRequestObject* self) +batchRequestGetProxy(BatchRequestObject* self, PyObject* /*args*/) { assert(self->request); if(!self->proxy) @@ -130,7 +130,7 @@ batchRequestGetProxy(BatchRequestObject* self) extern "C" #endif static PyObject* -batchRequestEnqueue(BatchRequestObject* self) +batchRequestEnqueue(BatchRequestObject* self, PyObject* /*args*/) { assert(self->request); |