diff options
Diffstat (limited to 'python/modules')
-rw-r--r-- | python/modules/IcePy/Communicator.cpp | 5 | ||||
-rw-r--r-- | python/modules/IcePy/Logger.cpp | 2 | ||||
-rw-r--r-- | python/modules/IcePy/ObjectAdapter.cpp | 2 | ||||
-rw-r--r-- | python/modules/IcePy/Properties.cpp | 2 | ||||
-rw-r--r-- | python/modules/IcePy/Proxy.cpp | 1 | ||||
-rw-r--r-- | python/modules/IcePy/Types.h | 1 |
6 files changed, 0 insertions, 13 deletions
diff --git a/python/modules/IcePy/Communicator.cpp b/python/modules/IcePy/Communicator.cpp index ef4472f325f..89cb5f8030d 100644 --- a/python/modules/IcePy/Communicator.cpp +++ b/python/modules/IcePy/Communicator.cpp @@ -1147,7 +1147,6 @@ communicatorFindAdminFacet(CommunicatorObject* self, PyObject* args) return Py_None; } - #ifdef WIN32 extern "C" #endif @@ -1175,7 +1174,6 @@ communicatorFindAllAdminFacets(CommunicatorObject* self) PyTypeObject* objectType = reinterpret_cast<PyTypeObject*>(lookupType("Ice.Object")); PyObjectHandle plainObject = objectType->tp_alloc(objectType, 0); - for(Ice::FacetMap::const_iterator p = facetMap.begin(); p != facetMap.end(); ++p) { @@ -1204,8 +1202,6 @@ communicatorFindAllAdminFacets(CommunicatorObject* self) return result.release(); } - - #ifdef WIN32 extern "C" #endif @@ -1434,7 +1430,6 @@ communicatorGetImplicitContext(CommunicatorObject* self) return createImplicitContext(implicitContext); } - #ifdef WIN32 extern "C" #endif diff --git a/python/modules/IcePy/Logger.cpp b/python/modules/IcePy/Logger.cpp index 68357c8dadb..b98320375dc 100644 --- a/python/modules/IcePy/Logger.cpp +++ b/python/modules/IcePy/Logger.cpp @@ -101,7 +101,6 @@ IcePy::LoggerWrapper::getPrefix() return getString(tmp.get()); } - Ice::LoggerPtr IcePy::LoggerWrapper::cloneWithPrefix(const string& prefix) { @@ -307,7 +306,6 @@ loggerGetPrefix(LoggerObject* self) return createString(prefix); } - #ifdef WIN32 extern "C" #endif diff --git a/python/modules/IcePy/ObjectAdapter.cpp b/python/modules/IcePy/ObjectAdapter.cpp index 9beb09d1f52..7f9410b431d 100644 --- a/python/modules/IcePy/ObjectAdapter.cpp +++ b/python/modules/IcePy/ObjectAdapter.cpp @@ -1513,7 +1513,6 @@ adapterSetLocator(ObjectAdapterObject* self, PyObject* args) return Py_None; } - #ifdef WIN32 extern "C" #endif @@ -1676,7 +1675,6 @@ adapterSetPublishedEndpoints(ObjectAdapterObject* self, PyObject* args) return Py_None; } - static PyMethodDef AdapterMethods[] = { { STRCAST("getName"), reinterpret_cast<PyCFunction>(adapterGetName), METH_NOARGS, diff --git a/python/modules/IcePy/Properties.cpp b/python/modules/IcePy/Properties.cpp index bbcca6b179b..579853e02c2 100644 --- a/python/modules/IcePy/Properties.cpp +++ b/python/modules/IcePy/Properties.cpp @@ -406,8 +406,6 @@ propertiesGetPropertyAsListWithDefault(PropertiesObject* self, PyObject* args) return list; } - - #ifdef WIN32 extern "C" #endif diff --git a/python/modules/IcePy/Proxy.cpp b/python/modules/IcePy/Proxy.cpp index fd44da8defc..be082198227 100644 --- a/python/modules/IcePy/Proxy.cpp +++ b/python/modules/IcePy/Proxy.cpp @@ -1142,7 +1142,6 @@ proxyIceSecure(ProxyObject* self, PyObject* args) return createProxy(newProxy, *self->communicator, reinterpret_cast<PyObject*>(Py_TYPE(self))); } - #ifdef WIN32 extern "C" #endif diff --git a/python/modules/IcePy/Types.h b/python/modules/IcePy/Types.h index eb122bc6171..5ca3d2296dc 100644 --- a/python/modules/IcePy/Types.h +++ b/python/modules/IcePy/Types.h @@ -30,7 +30,6 @@ class ClassInfo; typedef IceUtil::Handle<ClassInfo> ClassInfoPtr; typedef std::vector<ClassInfoPtr> ClassInfoList; - class ValueInfo; typedef IceUtil::Handle<ValueInfo> ValueInfoPtr; |