mirror of https://github.com/swig/swig
Testcase workaround for Solaris
This commit is contained in:
parent
af5906f915
commit
fea1bbb188
|
@ -33,6 +33,10 @@ namespace Alloc {
|
|||
}
|
||||
|
||||
template<typename X> void other1(typename Alloc::template rebind<ListBucket<Val> >::other) {}
|
||||
#if !defined(__SUNPRO_CC)
|
||||
template<typename X> void other2(typename Alloc::template rebind< ::template ListBucket<Val> >::other) {}
|
||||
#else
|
||||
template<typename X> void other2(typename Alloc::template rebind< :: ListBucket<Val> >::other) {}
|
||||
#endif
|
||||
template<typename X> void other3(Alloc::template rebind<int>) {}
|
||||
%}
|
||||
|
|
Loading…
Reference in New Issue