disable broken test under the old SwigValueWrapper mech

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@6461 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Marcelo Matus 2004-10-20 21:45:27 +00:00
commit 5e507b8a26

View file

@ -207,9 +207,10 @@ public:
{
T val;
// This case is disabled by now
// Param(T v): val(v) {}
Param(T v): val(v) {
}
Param(T v = T()): val(v) {}
operator T() const { return val; }
};