add template constructor

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@6997 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2005-02-24 23:41:32 +00:00
commit 4a72bb83c7

View file

@ -33,6 +33,8 @@ namespace std {
pair(T __a, U __b);
pair(const pair& __p);
template <class U1, class U2> pair(const pair<U1, U2> &p);
T first;
U second;