DOLFIN wrote:
One or more new changesets pushed to the primary dolfin repository.
A short summary of the last three changesets is included below.
changeset: 6112:1b2b19ddacfa92c80d36dc78a5bb4829605a10c0
tag: tip
user: Anders Logg <logg@xxxxxxxxx>
date: Sun May 10 00:33:56 2009 +0200
files: dolfin/common/Variable.cpp dolfin/common/Variable.h
dolfin/log/Logger.cpp dolfin/log/Table.cpp dolfin/log/Table.h
dolfin/log/log.cpp dolfin/log/log.h dolfin/parameter/NewParameters.cpp
dolfin/parameter/NewParameters.h sandbox/misc/cpp/main.cpp description:
Add str() to Variable interface (in C++) and overload info()
to accept a Variable, printing the output of str().
The function
void info(const Variable& variable);
has caused a problem when compiling the Python wrappers,
dolfin/swig/cpp_wrap.cc: In function ‘PyObject* _wrap_info(PyObject*,
PyObject*)’:
dolfin/swig/cpp_wrap.cc:27939: error: invalid conversion from ‘int’ to
‘PyObject*’
dolfin/swig/cpp_wrap.cc:27791: error: too many arguments to function
‘PyObject* _wrap_info__SWIG_0(PyObject*, PyObject*)’
dolfin/swig/cpp_wrap.cc:27939: error: at this point in file
dolfin/swig/cpp_wrap.cc:27942: error: invalid conversion from ‘int’ to
‘PyObject*’
dolfin/swig/cpp_wrap.cc:27861: error: too many arguments to function
‘PyObject* _wrap_info__SWIG_1(PyObject*, PyObject*)’
dolfin/swig/cpp_wrap.cc:27942: error: at this point in file
scons: *** [dolfin/swig/cpp_wrap.os] Error 1
From a quick inspection, I don't see what the problem is.