Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2010-05-19 01:37:19 +0400
committerMarek Safar <marek.safar@gmail.com>2010-05-19 01:37:19 +0400
commitea2be8c02eeee089ee49d18756aa85d42a767faf (patch)
treed15b1af8e509b482a9e1922dfe32940bc331d145 /mcs/class/corlib/System.Reflection.Emit/TypeBuilder.cs
parentc9d66d0bdfce28ce379c1c8d37473c2515451604 (diff)
Fixes build
svn path=/trunk/mcs/; revision=157516
Diffstat (limited to 'mcs/class/corlib/System.Reflection.Emit/TypeBuilder.cs')
-rw-r--r--mcs/class/corlib/System.Reflection.Emit/TypeBuilder.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/corlib/System.Reflection.Emit/TypeBuilder.cs b/mcs/class/corlib/System.Reflection.Emit/TypeBuilder.cs
index ad2aabe1910..685951cffda 100644
--- a/mcs/class/corlib/System.Reflection.Emit/TypeBuilder.cs
+++ b/mcs/class/corlib/System.Reflection.Emit/TypeBuilder.cs
@@ -675,7 +675,7 @@ namespace System.Reflection.Emit
#if NET_4_0
public PropertyBuilder DefineProperty (string name, PropertyAttributes attributes, CallingConventions callingConvention, Type returnType, Type[] parameterTypes)
{
- return DefineProperty (name, attributes, returnType, callingConvention, null, null, parameterTypes, null, null);
+ return DefineProperty (name, attributes, callingConvention, returnType , null, null, parameterTypes, null, null);
}
#endif