Skip to content

Commit

Permalink
Fix #32400 - regression handling __rop__ methods.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdhardy committed Mar 13, 2012
1 parent ce90110 commit 4a76497
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -88,7 +88,7 @@ sealed class SlotOrFunction {
get {
if (_function != null) {
var method = _function.Overload.ReflectionInfo as MethodInfo;
return method != null && method.IsDefined(typeof(MaybeNotImplementedAttribute), false);
return method != null && method.ReturnTypeCustomAttributes.IsDefined(typeof(MaybeNotImplementedAttribute), false);
}

return true;
Expand Down

0 comments on commit 4a76497

Please sign in to comment.