Add missing parameter names in STL container wrappers

Mostly in STL copy constructors.

Best to have parameter names as they make their way into the wrappers in
some target languages.
This commit is contained in:
William S Fulton 2019-02-12 22:04:58 +00:00
commit 6d0c495fd0
49 changed files with 72 additions and 74 deletions

View file

@ -14,7 +14,7 @@
template <class T>
struct traits_from<std::deque<T> > {
static PyObject *from(const std::deque<T> & vec) {
static PyObject *from(const std::deque<T>& vec) {
return traits_from_stdseq<std::deque<T> >::from(vec);
}
};

View file

@ -14,7 +14,7 @@
template <class T>
struct traits_from<std::list<T> > {
static PyObject *from(const std::list<T> & vec) {
static PyObject *from(const std::list<T>& vec) {
return traits_from_stdseq<std::list<T> >::from(vec);
}
};