Workaround for C# nameclash to fix error CS0082 in testcase

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@12893 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
William S Fulton 2012-01-07 22:55:07 +00:00
commit 0f1e483af7

View file

@ -34,12 +34,12 @@
{
T val;
T get_val() const
T get_value() const
{
return val;
}
void set_val(T v)
void set_value(T v)
{
val = v;
}