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/ObjectAdapter.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/ObjectAdapter.cpp')
-rw-r--r-- | python/modules/IcePy/ObjectAdapter.cpp | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/python/modules/IcePy/ObjectAdapter.cpp b/python/modules/IcePy/ObjectAdapter.cpp index d74f5b809e0..3b98026c77a 100644 --- a/python/modules/IcePy/ObjectAdapter.cpp +++ b/python/modules/IcePy/ObjectAdapter.cpp @@ -326,7 +326,7 @@ adapterDealloc(ObjectAdapterObject* self) extern "C" #endif static PyObject* -adapterGetName(ObjectAdapterObject* self) +adapterGetName(ObjectAdapterObject* self, PyObject* /*args*/) { assert(self->adapter); string name; @@ -347,7 +347,7 @@ adapterGetName(ObjectAdapterObject* self) extern "C" #endif static PyObject* -adapterGetCommunicator(ObjectAdapterObject* self) +adapterGetCommunicator(ObjectAdapterObject* self, PyObject* /*args*/) { assert(self->adapter); Ice::CommunicatorPtr communicator; @@ -368,7 +368,7 @@ adapterGetCommunicator(ObjectAdapterObject* self) extern "C" #endif static PyObject* -adapterActivate(ObjectAdapterObject* self) +adapterActivate(ObjectAdapterObject* self, PyObject* /*args*/) { assert(self->adapter); try @@ -399,7 +399,7 @@ adapterActivate(ObjectAdapterObject* self) extern "C" #endif static PyObject* -adapterHold(ObjectAdapterObject* self) +adapterHold(ObjectAdapterObject* self, PyObject* /*args*/) { assert(self->adapter); try @@ -501,7 +501,7 @@ adapterWaitForHold(ObjectAdapterObject* self, PyObject* args) extern "C" #endif static PyObject* -adapterDeactivate(ObjectAdapterObject* self) +adapterDeactivate(ObjectAdapterObject* self, PyObject* /*args*/) { assert(self->adapter); try @@ -607,7 +607,7 @@ adapterWaitForDeactivate(ObjectAdapterObject* self, PyObject* args) extern "C" #endif static PyObject* -adapterIsDeactivated(ObjectAdapterObject* self) +adapterIsDeactivated(ObjectAdapterObject* self, PyObject* /*args*/) { assert(self->adapter); try @@ -628,7 +628,7 @@ adapterIsDeactivated(ObjectAdapterObject* self) extern "C" #endif static PyObject* -adapterDestroy(ObjectAdapterObject* self) +adapterDestroy(ObjectAdapterObject* self, PyObject* /*args*/) { assert(self->adapter); try @@ -1515,7 +1515,7 @@ adapterSetLocator(ObjectAdapterObject* self, PyObject* args) extern "C" #endif static PyObject* -adapterGetLocator(ObjectAdapterObject* self) +adapterGetLocator(ObjectAdapterObject* self, PyObject* /*args*/) { assert(self->adapter); Ice::LocatorPrx locator; @@ -1544,7 +1544,7 @@ adapterGetLocator(ObjectAdapterObject* self) extern "C" #endif static PyObject* -adapterGetEndpoints(ObjectAdapterObject* self) +adapterGetEndpoints(ObjectAdapterObject* self, PyObject* /*args*/) { assert(self->adapter); @@ -1579,7 +1579,7 @@ adapterGetEndpoints(ObjectAdapterObject* self) extern "C" #endif static PyObject* -adapterRefreshPublishedEndpoints(ObjectAdapterObject* self) +adapterRefreshPublishedEndpoints(ObjectAdapterObject* self, PyObject* /*args*/) { assert(self->adapter); try @@ -1601,7 +1601,7 @@ adapterRefreshPublishedEndpoints(ObjectAdapterObject* self) extern "C" #endif static PyObject* -adapterGetPublishedEndpoints(ObjectAdapterObject* self) +adapterGetPublishedEndpoints(ObjectAdapterObject* self, PyObject* /*args*/) { assert(self->adapter); |