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

github.com/mono/ikvm-fork.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjfrijters <jfrijters>2011-01-19 07:55:26 +0300
committerjfrijters <jfrijters>2011-01-19 07:55:26 +0300
commit2d876687ad44034e811f55b0c198cac46f1bc800 (patch)
tree27127b678bf90ec5583c44b577bb3104f235c079 /reflect/Type.cs
parentff28c44961028097ce02d56f0bcc686c618585cb (diff)
Fix for GenericTypeInstance.__ContainsMissingType. Thanks to Marek for reporting this.
Diffstat (limited to 'reflect/Type.cs')
-rw-r--r--reflect/Type.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/reflect/Type.cs b/reflect/Type.cs
index 776525d3..20f1574b 100644
--- a/reflect/Type.cs
+++ b/reflect/Type.cs
@@ -2457,7 +2457,7 @@ namespace IKVM.Reflection
return true;
}
}
- return false;
+ return this.type.__IsMissing;
}
}