From 68569d6ec2c049ff263e1d422c48eb845f3e633e Mon Sep 17 00:00:00 2001 From: florent <florent@laas.fr> Date: Tue, 26 Oct 2010 11:23:28 +0200 Subject: [PATCH] Fix memory issue * src/entity-py.cc. --- src/entity-py.cc | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/src/entity-py.cc b/src/entity-py.cc index 0f4efa2..cd1ad35 100644 --- a/src/entity-py.cc +++ b/src/entity-py.cc @@ -19,7 +19,6 @@ using dynamicgraph::SignalBase; using dynamicgraph::ExceptionAbstract; using dynamicgraph::command::Command; using dynamicgraph::command::Value; -using dynamicgraph::command::AnyType; namespace dynamicgraph { namespace python { @@ -31,7 +30,7 @@ namespace dynamicgraph { static void destroy (void* self); static Value pythonToValue(PyObject* pyObject, const Value::Type& valueType); - static PyObject* valueToPython(Value value); + static PyObject* valueToPython(const Value& value); /** \brief Create an instance of Entity */ @@ -174,14 +173,13 @@ namespace dynamicgraph { std::cout << "string param = \"" << dvalue << "\"" << std::endl; return Value(svalue); break; - default: - std::cerr << "Only int, double and string are supported." - << std::endl; } + std::cerr << "Only int, double and string are supported." + << std::endl; return Value(); } - PyObject* valueToPython(Value value) + PyObject* valueToPython(const Value& value) { int intValue; double doubleValue; -- GitLab