Skip to content
This repository has been archived by the owner on Sep 24, 2020. It is now read-only.

Commit

Permalink
fix build.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Krüger committed Jun 17, 2011
1 parent c6aa05d commit abec118
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ICSharpCode.NRefactory/TypeSystem/ExtensionMethods.cs
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ public static IEnumerable<IMember> GetMembers (this IType type, ITypeResolveCont
/// <summary>
/// Gets all sub type definitions defined in a context.
/// </summary>
public static IEnumerable<ITypeDefinition> GetSubTypeDefinitions (this IType baseType, ITypeResolveContext context)
public static IEnumerable<ITypeDefinition> GetSubTypeDefinitions (this ITypeDefinition baseType, ITypeResolveContext context)
{
foreach (var contextType in context.GetAllClasses ()) {
if (contextType.IsDerivedFrom (baseType, context))
Expand Down

0 comments on commit abec118

Please sign in to comment.