Skip to content

Commit

Permalink
Fix #32400 - regression handling __rop__ methods.
Browse files Browse the repository at this point in the history
(cherry picked from commit 4a76497)
  • Loading branch information
jdhardy committed Mar 28, 2012
1 parent 6cb699a commit 92405ec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public bool MaybeNotImplemented {
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 92405ec

Please sign in to comment.