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

github.com/mono/cecil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/Mono
diff options
context:
space:
mode:
authorJb Evain <jbevain@gmail.com>2012-12-03 22:26:38 +0400
committerJb Evain <jbevain@gmail.com>2012-12-03 22:26:38 +0400
commit820f2aa7755e0ba4f40945763d7d32b0bf100229 (patch)
treecb916f4ee08cad39d724e7c3ce50ec2739824d01 /Mono
parentd9976f58f40fe9973a015198e1cc7d3773c4b640 (diff)
Fix compilation for the compact framework
Diffstat (limited to 'Mono')
-rw-r--r--Mono/Empty.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mono/Empty.cs b/Mono/Empty.cs
index 820bc34..c9e5d7d 100644
--- a/Mono/Empty.cs
+++ b/Mono/Empty.cs
@@ -58,7 +58,7 @@ namespace Mono.Cecil {
#else
var copy = new T [length];
Array.Copy (self, copy, self.Length);
- array = copy;
+ self = copy;
#endif
return self;