Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixing compile errors
  • Loading branch information
jbogard committed Nov 4, 2025
commit 3667a2ba2fd175ebdae4d7344a9a310240ae34d4
2 changes: 1 addition & 1 deletion src/UnitTests/ArraysAndLists.cs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public Expression MapExpression(IGlobalConfiguration configurationProvider, Prof
MemberMap memberMap,
Expression sourceExpression, Expression destExpression)
=> Expression.Multiply(Expression.Convert(sourceExpression, typeof(int)), Expression.Constant(1000));
#if NET481
#if NET471_OR_GREATER
public TypePair? GetAssociatedTypes(TypePair initialTypes) => null;
#endif
}
Expand Down
2 changes: 1 addition & 1 deletion src/UnitTests/Mappers/CustomMapperTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public Expression MapExpression(IGlobalConfiguration configurationProvider, Prof

return expr.Body;
}
#if NET481
#if NET471_OR_GREATER
public TypePair? GetAssociatedTypes(TypePair initialTypes) => null;
#endif
}
Expand Down
Loading