fix for new member variable function names

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@7317 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2005-06-23 20:57:05 +00:00
commit f93247e21f

View file

@ -82,7 +82,7 @@ public class runme
}
// Constant - imtype typemap attributes check
{
MethodInfo member = (MethodInfo)imclasstype.GetMember("get_TESTMACRO")[0];
MethodInfo member = (MethodInfo)imclasstype.GetMember("TESTMACRO_get")[0];
if (Attribute.GetCustomAttribute(member, typeof(IntegerOutAttribute)) == null)
throw new Exception("No IntegerOut attribute for " + member.Name);
}