Fixed type_name of some std classes.
Remove cmp_id from GC_VALUE. git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9784 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
949b6238e8
commit
c18feb2af3
4 changed files with 12 additions and 14 deletions
|
|
@ -75,7 +75,7 @@ namespace std {
|
|||
template <> struct traits<std::queue<_Tp, _Sequence > > {
|
||||
typedef pointer_category category;
|
||||
static const char* type_name() {
|
||||
return "std::queue<" #_Tp " >";
|
||||
return "std::queue<" #_Tp "," #_Sequence " >";
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
@ -109,7 +109,7 @@ namespace std {
|
|||
template <> struct traits<std::queue<_Tp*, _Sequence > > {
|
||||
typedef value_category category;
|
||||
static const char* type_name() {
|
||||
return "std::queue<" #_Tp " * >";
|
||||
return "std::queue<" #_Tp "," #_Sequence " * >";
|
||||
}
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue