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
path: root/mcs
diff options
context:
space:
mode:
authorRaja R Harinath <harinath@hurrynot.org>2004-06-18 11:44:55 +0400
committerRaja R Harinath <harinath@hurrynot.org>2004-06-18 11:44:55 +0400
commit1c1b5021156efd24b043f91c4cc5f1b464ae44fb (patch)
tree8938df0ee5b2c9aecb1fd5dfc25406d071bdb0ff /mcs
parent7d38cc94b0dc52feafc2c47b6eed438a4bfb8bd2 (diff)
(UnmanagedType_80): New constant. Used to workaround
problems like in tests/test-272.cs. svn path=/trunk/mcs/; revision=29855
Diffstat (limited to 'mcs')
-rw-r--r--mcs/class/corlib/Assembly/ChangeLog5
-rw-r--r--mcs/class/corlib/Assembly/Consts.cs3
2 files changed, 8 insertions, 0 deletions
diff --git a/mcs/class/corlib/Assembly/ChangeLog b/mcs/class/corlib/Assembly/ChangeLog
index b1e04c08edc..dfe8352694e 100644
--- a/mcs/class/corlib/Assembly/ChangeLog
+++ b/mcs/class/corlib/Assembly/ChangeLog
@@ -1,3 +1,8 @@
+2004-06-18 Raja R Harinath <rharinath@novell.com>
+
+ * Consts.cs (UnmanagedType_80): New constant. Used to workaround
+ problems like in tests/test-272.cs.
+
2004-06-03 Raja R Harinath <rharinath@novell.com>
* AssemblyInfo.cs: Don't sign if BOOTSTRAP_WITH_OLDLIB.
diff --git a/mcs/class/corlib/Assembly/Consts.cs b/mcs/class/corlib/Assembly/Consts.cs
index b97b60970cc..79bca809140 100644
--- a/mcs/class/corlib/Assembly/Consts.cs
+++ b/mcs/class/corlib/Assembly/Consts.cs
@@ -48,6 +48,8 @@
// [Designer ("System.Diagnostics.Design.ProcessDesigner, " + Consts.AssemblySystem_Design, typeof (IDesigner))]
//
+using System.Runtime.InteropServices;
+
internal sealed class Consts
{
@@ -74,4 +76,5 @@ internal sealed class Consts
#endif
+ public const UnmanagedType UnmanagedType_80 = (UnmanagedType) 80;
}