Include all template parameters for std_unordered_multimap and std_unordered_map
This commit is contained in:
parent
cfdf65eb34
commit
30f59ffe22
5 changed files with 42 additions and 38 deletions
|
|
@ -56,9 +56,9 @@
|
|||
%fragment("StdUnorderedMapTraits","header",fragment="StdMapCommonTraits",fragment="StdUnorderedMapForwardIteratorTraits")
|
||||
{
|
||||
namespace swig {
|
||||
template <class SwigPySeq, class K, class T, class Hash, class Compare, class Alloc >
|
||||
template <class SwigPySeq, class K, class T, class Hash, class Compare, class Alloc>
|
||||
inline void
|
||||
assign(const SwigPySeq& swigpyseq, std::unordered_map<K,T,Hash,Compare,Alloc > *unordered_map) {
|
||||
assign(const SwigPySeq& swigpyseq, std::unordered_map<K,T,Hash,Compare,Alloc> *unordered_map) {
|
||||
typedef typename std::unordered_map<K,T,Hash,Compare,Alloc>::value_type value_type;
|
||||
typename SwigPySeq::const_iterator it = swigpyseq.begin();
|
||||
for (;it != swigpyseq.end(); ++it) {
|
||||
|
|
@ -97,7 +97,7 @@
|
|||
}
|
||||
};
|
||||
|
||||
template <class K, class T, class Hash, class Compare, class Alloc >
|
||||
template <class K, class T, class Hash, class Compare, class Alloc>
|
||||
struct traits_from<std::unordered_map<K,T,Hash,Compare,Alloc> > {
|
||||
typedef std::unordered_map<K,T,Hash,Compare,Alloc> unordered_map_type;
|
||||
typedef typename unordered_map_type::const_iterator const_iterator;
|
||||
|
|
|
|||
|
|
@ -6,27 +6,27 @@
|
|||
%fragment("StdUnorderedMultimapTraits","header",fragment="StdMapCommonTraits",fragment="StdUnorderedMapForwardIteratorTraits")
|
||||
{
|
||||
namespace swig {
|
||||
template <class SwigPySeq, class K, class T >
|
||||
template <class SwigPySeq, class K, class T, class Hash, class Compare, class Alloc>
|
||||
inline void
|
||||
assign(const SwigPySeq& swigpyseq, std::unordered_multimap<K,T > *unordered_multimap) {
|
||||
typedef typename std::unordered_multimap<K,T>::value_type value_type;
|
||||
assign(const SwigPySeq& swigpyseq, std::unordered_multimap<K,T,Hash,Compare,Alloc> *unordered_multimap) {
|
||||
typedef typename std::unordered_multimap<K,T,Hash,Compare,Alloc>::value_type value_type;
|
||||
typename SwigPySeq::const_iterator it = swigpyseq.begin();
|
||||
for (;it != swigpyseq.end(); ++it) {
|
||||
unordered_multimap->insert(value_type(it->first, it->second));
|
||||
}
|
||||
}
|
||||
|
||||
template <class K, class T>
|
||||
struct traits_reserve<std::unordered_multimap<K,T> > {
|
||||
static void reserve(std::unordered_multimap<K,T> &seq, typename std::unordered_multimap<K,T>::size_type n) {
|
||||
template <class K, class T, class Hash, class Compare, class Alloc>
|
||||
struct traits_reserve<std::unordered_multimap<K,T,Hash,Compare,Alloc> > {
|
||||
static void reserve(std::unordered_multimap<K,T,Hash,Compare,Alloc> &seq, typename std::unordered_multimap<K,T,Hash,Compare,Alloc>::size_type n) {
|
||||
seq.reserve(n);
|
||||
}
|
||||
};
|
||||
|
||||
template <class K, class T>
|
||||
struct traits_asptr<std::unordered_multimap<K,T> > {
|
||||
typedef std::unordered_multimap<K,T> unordered_multimap_type;
|
||||
static int asptr(PyObject *obj, std::unordered_multimap<K,T> **val) {
|
||||
template <class K, class T, class Hash, class Compare, class Alloc>
|
||||
struct traits_asptr<std::unordered_multimap<K,T,Hash,Compare,Alloc> > {
|
||||
typedef std::unordered_multimap<K,T,Hash,Compare,Alloc> unordered_multimap_type;
|
||||
static int asptr(PyObject *obj, std::unordered_multimap<K,T,Hash,Compare,Alloc> **val) {
|
||||
int res = SWIG_ERROR;
|
||||
if (PyDict_Check(obj)) {
|
||||
SwigVar_PyObject items = PyObject_CallMethod(obj,(char *)"items",NULL);
|
||||
|
|
@ -34,7 +34,7 @@
|
|||
/* In Python 3.x the ".items()" method returns a dict_items object */
|
||||
items = PySequence_Fast(items, ".items() didn't return a sequence!");
|
||||
%#endif
|
||||
res = traits_asptr_stdseq<std::unordered_multimap<K,T>, std::pair<K, T> >::asptr(items, val);
|
||||
res = traits_asptr_stdseq<std::unordered_multimap<K,T,Hash,Compare,Alloc>, std::pair<K, T> >::asptr(items, val);
|
||||
} else {
|
||||
unordered_multimap_type *p;
|
||||
swig_type_info *descriptor = swig::type_info<unordered_multimap_type>();
|
||||
|
|
@ -45,9 +45,9 @@
|
|||
}
|
||||
};
|
||||
|
||||
template <class K, class T >
|
||||
struct traits_from<std::unordered_multimap<K,T> > {
|
||||
typedef std::unordered_multimap<K,T> unordered_multimap_type;
|
||||
template <class K, class T, class Hash, class Compare, class Alloc>
|
||||
struct traits_from<std::unordered_multimap<K,T,Hash,Compare,Alloc> > {
|
||||
typedef std::unordered_multimap<K,T,Hash,Compare,Alloc> unordered_multimap_type;
|
||||
typedef typename unordered_multimap_type::const_iterator const_iterator;
|
||||
typedef typename unordered_multimap_type::size_type size_type;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue