in forward declaration replace class keyword when struct is expected
comment out unused parameters
This commit is contained in:
@@ -105,7 +105,7 @@ PyObject *PropertyPostDataObject::getPyObject(void)
|
||||
return new PyObject();
|
||||
}
|
||||
|
||||
void PropertyPostDataObject::setPyObject(PyObject *value)
|
||||
void PropertyPostDataObject::setPyObject(PyObject * /*value*/)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -167,7 +167,7 @@ unsigned int PropertyPostDataObject::getMemSize (void) const
|
||||
return m_dataObject->GetActualMemorySize();
|
||||
}
|
||||
|
||||
void PropertyPostDataObject::getPaths(std::vector<App::ObjectIdentifier> &paths) const
|
||||
void PropertyPostDataObject::getPaths(std::vector<App::ObjectIdentifier> & /*paths*/) const
|
||||
{
|
||||
// paths.push_back(App::ObjectIdentifier(getContainer()) << App::ObjectIdentifier::Component::SimpleComponent(getName())
|
||||
// << App::ObjectIdentifier::Component::SimpleComponent(App::ObjectIdentifier::String("ShapeType")));
|
||||
|
||||
Reference in New Issue
Block a user