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:
authorMartin Baulig <martin@novell.com>2005-02-02 15:16:22 +0300
committerMartin Baulig <martin@novell.com>2005-02-02 15:16:22 +0300
commita53e79f8c43a3bd481d8b8475034bef4105965cc (patch)
treee570400ace09ce59a9723dec95ffe6a4960600f6 /mcs
parent3d9c9bd8500fbe96f4a0dcf01ef58c89dcde1ce5 (diff)
Ooooops.
svn path=/trunk/mcs/; revision=39982
Diffstat (limited to 'mcs')
-rw-r--r--mcs/gmcs/delegate.cs2
-rw-r--r--mcs/mcs/delegate.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/mcs/gmcs/delegate.cs b/mcs/gmcs/delegate.cs
index e445fb72c5b..70ea16b6a35 100644
--- a/mcs/gmcs/delegate.cs
+++ b/mcs/gmcs/delegate.cs
@@ -91,7 +91,7 @@ namespace Mono.CSharp {
TypeAttributes.Class | TypeAttributes.Sealed;
if (TypeManager.multicast_delegate_type == null)
- Report.Error (-100, loc, "Internal error: delegate used before " +
+ Report.Error (-100, Location, "Internal error: delegate used before " +
"System.MulticastDelegate is resolved. This can only " +
"happen during corlib compilation, when using a delegate " +
"in any of the `core' classes. See bug #72015 for details.");
diff --git a/mcs/mcs/delegate.cs b/mcs/mcs/delegate.cs
index 75a0989906e..c58990088c8 100644
--- a/mcs/mcs/delegate.cs
+++ b/mcs/mcs/delegate.cs
@@ -85,7 +85,7 @@ namespace Mono.CSharp {
TypeAttributes.Class | TypeAttributes.Sealed;
if (TypeManager.multicast_delegate_type == null)
- Report.Error (-100, loc, "Internal error: delegate used before " +
+ Report.Error (-100, Location, "Internal error: delegate used before " +
"System.MulticastDelegate is resolved. This can only " +
"happen during corlib compilation, when using a delegate " +
"in any of the `core' classes. See bug #72015 for details.");