We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73a7e46 commit af027b8Copy full SHA for af027b8
mdoc/Mono.Documentation/MDocUpdater.Member.cs
@@ -45,7 +45,7 @@ internal static void MakeTypeParameterConstraints(XmlElement root, XmlElement e,
45
if ((attrs & GenericParameterAttributes.ReferenceTypeConstraint) != 0)
46
AppendElementText(ce, "ParameterAttribute", "ReferenceTypeConstraint");
47
// Check for 'allows ref struct' constraint
48
- if ((attrs & (GenericParameterAttributes)0x0020) != 0) // Assuming 0x1000 is the flag for 'allows ref struct'
+ if ((attrs & (GenericParameterAttributes)0x0020) != 0) // Assuming 0x0020 is the flag for 'allows ref struct'
49
AppendElementText(ce, "ParameterAttribute", "AllowByRefLike");
50
51
#if NEW_CECIL
0 commit comments