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:
authorDuncan Mak <duncan@mono-cvs.ximian.com>2004-06-25 00:42:07 +0400
committerDuncan Mak <duncan@mono-cvs.ximian.com>2004-06-25 00:42:07 +0400
commit93bcd78c012765f35dbaa6b22784386fd38c10f5 (patch)
tree28afb3a2aae940c66d60b0a1da4c796e063b9685 /mcs
parentd635611b29524c2d151b2ed49e2b8c6b06fcdce2 (diff)
Remove the keyword "abstract" to fix the build.
svn path=/trunk/mcs/; revision=30339
Diffstat (limited to 'mcs')
-rw-r--r--mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Microsoft.VisualBasic.CompilerServices/ChangeLog5
-rw-r--r--mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Microsoft.VisualBasic.CompilerServices/ExceptionUtils.cs2
2 files changed, 6 insertions, 1 deletions
diff --git a/mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Microsoft.VisualBasic.CompilerServices/ChangeLog b/mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Microsoft.VisualBasic.CompilerServices/ChangeLog
index 41a35a9cc28..615b96627c8 100644
--- a/mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Microsoft.VisualBasic.CompilerServices/ChangeLog
+++ b/mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Microsoft.VisualBasic.CompilerServices/ChangeLog
@@ -1,3 +1,8 @@
+2004-06-24 Duncan Mak <duncan@ximian.com>
+
+ * ExceptionUtils.cs: Remove the keyword "abstract" to fix the
+ build.
+
2004-06-24 Jambunathan K <kjambunathan@novell.com>
* Utils.cs:
* StringType.cs: corcompare based fixes
diff --git a/mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Microsoft.VisualBasic.CompilerServices/ExceptionUtils.cs b/mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Microsoft.VisualBasic.CompilerServices/ExceptionUtils.cs
index 97c3c441163..a463e6002e8 100644
--- a/mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Microsoft.VisualBasic.CompilerServices/ExceptionUtils.cs
+++ b/mcs/class/Microsoft.VisualBasic/Microsoft.VisualBasic/Microsoft.VisualBasic.CompilerServices/ExceptionUtils.cs
@@ -32,7 +32,7 @@ namespace Microsoft.VisualBasic.CompilerServices {
[Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute]
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Auto)]
- sealed abstract public class ExceptionUtils {
+ sealed public class ExceptionUtils {
internal const int E_NOTIMPL = -2147467263;
internal const int E_NOINTERFACE = -2147467262;