← Back to team overview

dolfin team mailing list archive

std vector typemaps

 

In std_vector_typemaps.i, we have

  namespace std
  {
    template <class T> class vector
    {
    };
  }

which prevents the use of

  %include "std_vector.i"

If I comment out the declaration of std::vector and include std_vector.i, I still get an error.

What is std_vector.i not being used? The way I see it it would make the wrapper code much simpler.

Garth